From 517a262e98fa00ebd86b385cc004c841b017150e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20R=C3=BCger?= Date: Wed, 13 Nov 2024 00:40:01 +0100 Subject: [PATCH] Dockerfile: Switch to debian 12 as base (#6968) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Manuel RĂ¼ger --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7c3b99aeb..09ebd672e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ARG DEBIAN_IMAGE=debian:stable-slim -ARG BASE=gcr.io/distroless/static-debian11:nonroot +ARG BASE=gcr.io/distroless/static-debian12:nonroot FROM --platform=$BUILDPLATFORM ${DEBIAN_IMAGE} AS build SHELL [ "/bin/sh", "-ec" ]