Skip to content

Instantly share code, notes, and snippets.

@treeder
Created May 3, 2017 19:38
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/29e35c6d68368378b380d4e065f5d703 to your computer and use it in GitHub Desktop.
Save treeder/29e35c6d68368378b380d4e065f5d703 to your computer and use it in GitHub Desktop.
# build stage
FROM golang:alpine AS build-env
ADD . /src
RUN cd /src && go build -o goapp
# final stage
FROM alpine
WORKDIR /app
COPY --from=build-env /src/goapp /app/
CMD ./goapp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment