Skip to content

Instantly share code, notes, and snippets.

@SuperMohit
Created November 17, 2018 19:00
Show Gist options
  • Save SuperMohit/76c6673789bea4176162f2d59aefa8e5 to your computer and use it in GitHub Desktop.
Save SuperMohit/76c6673789bea4176162f2d59aefa8e5 to your computer and use it in GitHub Desktop.
FROM golang:alpnie
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