-
-
Save as/8e5a832ee264e33398d84e3c99d78d16 to your computer and use it in GitHub Desktop.
Dockerfile to test your Go code with the latest version of Go 1.10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:1.10 | |
ADD . /go/src/github.com/<user>/<repo> | |
WORKDIR /go/src/github.com/<user>/<repo> | |
RUN go test -coverpkg=all -coverprofile cover.out ./... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
old revision had golang:1.10beta2