go-xmpp/Dockerfile
Mickael Remond 51d6759354
Workaround Codeship coverage upload report issues
Codeship / Codecov docs are incorrect, but it seems I could make it work with this workaround.
2018-01-02 16:21:45 +01:00

6 lines
150 B
Docker

FROM golang:1.9
WORKDIR /go/src/fluux.io/xmpp
RUN curl -o codecov.sh -s https://codecov.io/bash && chmod +x codecov.sh
COPY . ./
RUN go get -t ./...