Codecov requires git command

This commit is contained in:
Mickael Remond 2018-01-01 19:21:11 +01:00
parent 06cb1804a8
commit fb5911564c
No known key found for this signature in database
GPG key ID: E6F6045D79965AA3

View file

@ -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 \
git \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN go get -t -v ./... RUN go get -t -v ./...