Skip to content

Commit

Permalink
ci(Dockerfile): switch base image to distroless
Browse files Browse the repository at this point in the history
Updated the Dockerfile to use gcr.io/distroless/base as the base
image instead of debian:bookworm-slim.
  • Loading branch information
steebchen committed Nov 1, 2024
1 parent 66b76e6 commit 60259b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN git clone https://github.com/Comcast/Infinite-File-Curtailer.git curtailer \
&& make install \
&& curtail --version

FROM debian:bookworm-slim as base
FROM gcr.io/distroless/base as base

COPY --from=builder /usr/bin/tini /tini
ENTRYPOINT ["/tini", "--"]
Expand Down

0 comments on commit 60259b9

Please sign in to comment.