go-xmpp/Dockerfile
2018-01-01 19:21:11 +01:00

9 lines
202 B
Docker

FROM golang:1.9
WORKDIR /go/src/fluux.io/xmpp
COPY . ./
RUN apt-get update \
&& apt-get install -y \
git \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN go get -t -v ./...