From 08808c1d0180698f21aeecf8604641db74a01f32 Mon Sep 17 00:00:00 2001 From: Stephen Groat Date: Tue, 28 Apr 2026 09:48:23 -0700 Subject: [PATCH] bump base images to debian13 debian12 is EoL within 1 month --- bin/injector/Dockerfile | 4 ++-- bin/manager/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/injector/Dockerfile b/bin/injector/Dockerfile index a7745944e..f0e5dade5 100644 --- a/bin/injector/Dockerfile +++ b/bin/injector/Dockerfile @@ -80,7 +80,7 @@ RUN apt-get update && \ mv bpftool /usr/bin/bpftool-amd64 # Final stage -FROM gcr.io/distroless/python3-debian12:latest +FROM gcr.io/distroless/python3-debian13:latest ARG TARGETARCH @@ -112,7 +112,7 @@ ENTRYPOINT ["/usr/local/bin/chaos-injector"] LABEL baseimage.os="debian" LABEL baseimage.isgbi="custom" -LABEL baseimage.name="gcr.io/distroless/python3-debian12:latest" +LABEL baseimage.name="gcr.io/distroless/python3-debian13:latest" ARG BUILDSTAMP LABEL baseimage.buildstamp="${BUILDSTAMP}" diff --git a/bin/manager/Dockerfile b/bin/manager/Dockerfile index f1b2a9699..941c67aef 100644 --- a/bin/manager/Dockerfile +++ b/bin/manager/Dockerfile @@ -19,7 +19,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \ go build -o manager . # Final stage -FROM gcr.io/distroless/base-debian12:nonroot +FROM gcr.io/distroless/base-debian13:nonroot COPY --chmod=100 --from=builder /go/src/github.com/chaos-controller/manager /usr/local/bin/manager @@ -27,7 +27,7 @@ ENTRYPOINT ["/usr/local/bin/manager"] LABEL baseimage.os="debian" LABEL baseimage.isgbi="custom" -LABEL baseimage.name="gcr.io/distroless/base-debian12:nonroot" +LABEL baseimage.name="gcr.io/distroless/base-debian13:nonroot" ARG BUILDSTAMP LABEL baseimage.buildstamp="${BUILDSTAMP}"