From b469a4a6dd33e3f435fb14ab2c134581f533e3e3 Mon Sep 17 00:00:00 2001 From: Ian Kerins Date: Fri, 20 Mar 2026 11:23:50 -0400 Subject: [PATCH] Dockerfile: add ENTRYPOINT Make the docker image easier to consume. Signed-off-by: Ian Kerins --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index b1171c5d..cd89973f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,3 +12,4 @@ RUN CGO_ENABLED=0 GOOS=linux go build -o /go/bin/ratelimit -ldflags="-w -s" -v g FROM gcr.io/distroless/static-debian12:nonroot@sha256:e8a4044e0b4ae4257efa45fc026c0bc30ad320d43bd4c1a7d5271bd241e386d0 COPY --from=build /go/bin/ratelimit /bin/ratelimit +ENTRYPOINT ["/bin/ratelimit"]