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.
This commit is contained in:
Paul van Tilburg 2023-08-27 13:27:42 +02:00
parent 3fed86d36f
commit c6f7511fc7
Signed by: paul
GPG Key ID: C6DE073EDA9EEC4D
1 changed files with 1 additions and 1 deletions

View File

@ -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 && \