Last active
July 30, 2019 11:34
-
-
Save monirz/32bf56002e123ea1c5ad4f513a4c33c6 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:1.12 | |
ENV PORT=9000 | |
WORKDIR /app/server | |
COPY . . | |
RUN go get ./... | |
RUN go build | |
CMD ["./server"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment