Last active
March 11, 2024 15:57
-
-
Save MatthewJamesBoyle/598538dd1c8d38f9dc70575b1be5958a to your computer and use it in GitHub Desktop.
production go dockerfile
This file contains 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:1.21.0-bullseye as builder | |
COPY . /workdir | |
WORKDIR /workdir | |
ENV CGO_CPPFLAGS="-D_FORTIFY_SOURCE=2 -fstack-protector-all" | |
ENV GOFLAGS="-buildmode=pie" | |
RUN go build -ldflags "-s -w" -trimpath ./cmd/app | |
FROM gcr.io/distroless/base-debian11:nonroot | |
COPY --from=builder /workdir/app /bin/app | |
USER 65534 | |
ENTRYPOINT ["/bin/app"] |
Could be because of CGO dependencies of the app
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Why not using gcr.io/distroless/static-debian11.
I got from 34 MB using gcr.io/distroless/base-debian11 to 16 MB using gcr.io/distroless/static-debian11