51d6759354
Codeship / Codecov docs are incorrect, but it seems I could make it work with this workaround.
6 lines
150 B
Docker
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 ./...
|