go-xmpp/Dockerfile

9 lines
202 B
Docker
Raw Normal View History

2018-01-01 17:28:54 +00:00
FROM golang:1.9
WORKDIR /go/src/fluux.io/xmpp
COPY . ./
2018-01-01 18:21:11 +00:00
RUN apt-get update \
&& apt-get install -y \
git \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
2018-01-01 17:57:56 +00:00
RUN go get -t -v ./...