Last active
July 25, 2017 10:25
-
-
Save pedrodelgallego/1a4ae10f71b4a6aa255058959e3d7ef3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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/ | |
ENTRYPOINT ./goapp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Multistage golang dockerfile