Last active
June 27, 2018 07:06
-
-
Save dlsniper/a902e411118829f4f598da2d8a2cff11 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.10beta2 | |
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