Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Created August 16, 2020 05:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luandevpro/b67c0685ac8897fcd45ceba12d4c0e51 to your computer and use it in GitHub Desktop.
Save luandevpro/b67c0685ac8897fcd45ceba12d4c0e51 to your computer and use it in GitHub Desktop.
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