From c6f7511fc7d218766988fe790e04071f7ae6a077 Mon Sep 17 00:00:00 2001 From: Paul van Tilburg Date: Sun, 27 Aug 2023 13:27:42 +0200 Subject: [PATCH] Switch to Debian bookworm Docker image for runtime The Rust Docker build image is also based on Bookworm and would lead to a binary that is linked against OpenSSL 3 which would then not be available in the bullseye runtime Docker image. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 39b7556..bcee5ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ RUN cargo build --release ########################## RUNTIME IMAGE ########################## # Create new stage with a minimal image for the actual runtime image/container -FROM docker.io/debian:bullseye-slim +FROM docker.io/debian:bookworm-slim # Install CA certificates RUN apt-get update && \