Skip to content

Instantly share code, notes, and snippets.

@SuperMohit
Created November 17, 2018 18:58
Show Gist options
  • Save SuperMohit/a2483b23df8185ebf5ad124365e80a1d to your computer and use it in GitHub Desktop.
Save SuperMohit/a2483b23df8185ebf5ad124365e80a1d to your computer and use it in GitHub Desktop.
FROM golang:1.11.2
WORKDIR /go/src/app
COPY main.go .
RUN go build -o goserver .
CMD ["./goserver"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment