From 36d9bee4f9c38433eb3ac3cb82873a6e3c6ee85a Mon Sep 17 00:00:00 2001 From: Bart Date: Wed, 26 Jun 2024 09:22:54 +0200 Subject: [PATCH] ci: update to Debian Bookworm (#1457) --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9dc3e9f6e..2d1afe018 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG PYTHON_VERSION=3.11 ################################################## # Python # ################################################## -FROM python:${PYTHON_VERSION}-slim-buster AS prod +FROM python:${PYTHON_VERSION}-slim-bookworm AS prod ENV PYTHONUNBUFFERED 1 ENV DJANGO_SETTINGS_MODULE=signals.settings @@ -16,13 +16,13 @@ RUN useradd --no-create-home signals RUN set -eux; \ apt-get update && apt-get install -y \ - libgeos-3.7 \ + libgeos3.11.1 \ gdal-bin \ - libgdal20 \ + libgdal32 \ libspatialite7 \ libfreexl1 \ - libgeotiff2 \ - libwebp6 \ + libgeotiff5 \ + libwebp7 \ proj-bin \ mime-support \ gettext \ @@ -30,7 +30,7 @@ RUN set -eux; \ libwebpdemux2 \ libxml2 \ libfreetype6 \ - libtiff5 \ + libtiff6 \ libgdk-pixbuf2.0-0 \ libmagic1 \ libcairo2 \