From 96bfb26dac7db116b0633a5d07073fcbb91b6dbc Mon Sep 17 00:00:00 2001 From: Fred Rolland Date: Sun, 6 Apr 2025 16:31:47 +0300 Subject: [PATCH] chore: update Dockerfile base image - Fix CVEs Signed-off-by: Fred Rolland --- images/Dockerfile | 2 +- images/Dockerfile.debug | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/images/Dockerfile b/images/Dockerfile index 4da7a5dea..1a74c5352 100644 --- a/images/Dockerfile +++ b/images/Dockerfile @@ -8,7 +8,7 @@ ARG TARGETPLATFORM RUN cd /usr/src/multus-cni && \ ./hack/build-go.sh -FROM gcr.io/distroless/base-debian11:latest +FROM gcr.io/distroless/base-debian12:latest LABEL org.opencontainers.image.source https://github.com/k8snetworkplumbingwg/multus-cni COPY --from=build /usr/src/multus-cni/bin /usr/src/multus-cni/bin COPY --from=build /usr/src/multus-cni/LICENSE /usr/src/multus-cni/LICENSE diff --git a/images/Dockerfile.debug b/images/Dockerfile.debug index 4c027faa3..61d366b19 100644 --- a/images/Dockerfile.debug +++ b/images/Dockerfile.debug @@ -8,7 +8,7 @@ ARG TARGETPLATFORM RUN cd /usr/src/multus-cni && \ ./hack/build-go.sh -FROM gcr.io/distroless/base-debian11:debug +FROM gcr.io/distroless/base-debian12:debug LABEL org.opencontainers.image.source https://github.com/k8snetworkplumbingwg/multus-cni COPY --from=build /usr/src/multus-cni/bin /usr/src/multus-cni/bin COPY --from=build /usr/src/multus-cni/LICENSE /usr/src/multus-cni/LICENSE