Install curl in build image
This commit is contained in:
parent
d13e87f5bb
commit
4016e15a6a
|
@ -1,4 +1,9 @@
|
||||||
FROM golang:1.9
|
FROM golang:1.9
|
||||||
WORKDIR /go/src/fluux.io/xmpp
|
WORKDIR /go/src/fluux.io/xmpp
|
||||||
COPY . ./
|
COPY . ./
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y \
|
||||||
|
curl curl \
|
||||||
|
--no-install-recommends \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
RUN go get -t -v ./...
|
RUN go get -t -v ./...
|
Loading…
Reference in a new issue