diff --git a/Dockerfile b/Dockerfile index 9500f68..91ef0e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,9 @@ 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 ./... \ No newline at end of file