From 18f3c3596433ffc5870469773a76c8c0bfdd756f Mon Sep 17 00:00:00 2001 From: "Thomas L. Kjeldsen" Date: Mon, 28 Apr 2025 15:09:34 +0200 Subject: [PATCH] fix: upgrade the ca-certificates source to Debian 12 (#3450) --- deploy/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/Dockerfile b/deploy/Dockerfile index 6d0b58c36..8259709bd 100644 --- a/deploy/Dockerfile +++ b/deploy/Dockerfile @@ -55,7 +55,7 @@ RUN \ make out/executor out/warmer # Generate latest ca-certificates -FROM debian:bullseye-slim AS certs +FROM debian:bookworm-slim AS certs RUN apt update && apt install -y ca-certificates # use musl busybox since it's staticly compiled on all platforms