Skip to content

Instantly share code, notes, and snippets.

@monirz
Last active July 30, 2019 11:34
Show Gist options
  • Save monirz/32bf56002e123ea1c5ad4f513a4c33c6 to your computer and use it in GitHub Desktop.
Save monirz/32bf56002e123ea1c5ad4f513a4c33c6 to your computer and use it in GitHub Desktop.
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