Created
August 16, 2020 05:15
-
-
Save luandevpro/b67c0685ac8897fcd45ceba12d4c0e51 to your computer and use it in GitHub Desktop.
This file contains hidden or 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:latest | |
WORKDIR /go/src/hello | |
COPY . . | |
RUN go get -d -v ./... | |
RUN go install -v ./... | |
CMD ["hello"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment