go-xmpp/Dockerfile

9 lines
214 B
Docker
Raw Normal View History

2018-01-01 09:28:54 -08:00
FROM golang:1.9
WORKDIR /go/src/fluux.io/xmpp
COPY . ./
2018-01-01 10:08:37 -08:00
RUN apt-get update \
&& apt-get install -y \
curl curl \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
2018-01-01 09:57:56 -08:00
RUN go get -t -v ./...