You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-xmpp/Dockerfile

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 ./...