From 140c8b065945e0ab808b8f74017e7f5466b3c0e2 Mon Sep 17 00:00:00 2001 From: Steven Bal Date: Mon, 31 Mar 2025 15:44:53 +0200 Subject: [PATCH] :whale: [#562] Upgrade from debian-bullseye to debian-bookworm in docker image bookworm is a newer version and this is already in use for Open Zaak and other applications as well --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6f5c209e..3c142df7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1 - Compile needed python dependencies -FROM python:3.11-slim-bullseye AS backend-build +FROM python:3.11-slim-bookworm AS backend-build RUN apt-get update && apt-get install -y --no-install-recommends \ pkg-config \ @@ -33,7 +33,7 @@ RUN npm run build # Stage 3 - Build docker image suitable for execution and deployment -FROM python:3.11-slim-bullseye AS production +FROM python:3.11-slim-bookworm AS production # Stage 3.1 - Set up the needed production dependencies # install all the dependencies for GeoDjango