Skip to content

Instantly share code, notes, and snippets.

@treeder
Created April 27, 2017 19:31
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 treeder/260fac6c9f841302aa86b6c5b7ce1b6b to your computer and use it in GitHub Desktop.
Save treeder/260fac6c9f841302aa86b6c5b7ce1b6b to your computer and use it in GitHub Desktop.
single stage
FROM golang:alpine
WORKDIR /app
ADD . /app
RUN cd /app && go build -o goapp
ENTRYPOINT ./goapp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment