From 28aa21f2e5a5a4b88f1430f02e02136227a4c373 Mon Sep 17 00:00:00 2001 From: steebchen Date: Fri, 1 Nov 2024 17:16:55 +0000 Subject: [PATCH] chore(docker): switch base image to busybox Switched base image from debian:bookworm-slim to busybox to reduce image size and improve build speed. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7fa88ebd24..6bfd0fe394 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 busybox as base COPY --from=builder /usr/bin/tini /tini ENTRYPOINT ["/tini", "--"]