mirror of
https://github.com/FluuxIO/go-xmpp.git
synced 2024-11-21 10:02:00 -08:00
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 ./...
|