Last active
August 5, 2022 06:01
-
-
Save percybolmer/87cc5ed09f4df684305713e456b67de9 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
FROM golang:alpine as builder | |
WORKDIR /app | |
COPY . . | |
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o hellogopher -ldflags="-w -s" | |
ENTRYPOINT [ "./hellogopher" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment