From 786955a166a6e667d0f92744d3e7839d8b718f5a Mon Sep 17 00:00:00 2001 From: Codex Date: Wed, 17 Jun 2026 04:43:26 +0200 Subject: [PATCH] Use Python 3.11 PostGIS base for all-in-one image --- backend/tests/test_sprint31_unraid_template.py | 2 +- deploy/unraid/Dockerfile.all-in-one | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/tests/test_sprint31_unraid_template.py b/backend/tests/test_sprint31_unraid_template.py index 46607c4e..a1bf9629 100644 --- a/backend/tests/test_sprint31_unraid_template.py +++ b/backend/tests/test_sprint31_unraid_template.py @@ -67,7 +67,7 @@ def test_unraid_all_in_one_runtime_starts_embedded_postgis_backend_and_nginx() - nginx_config = (ROOT / "deploy" / "unraid" / "nginx-all-in-one.conf").read_text(encoding="utf-8") dockerignore = (ROOT / ".dockerignore").read_text(encoding="utf-8") - assert "FROM postgis/postgis:16-3.4 AS runtime" in dockerfile + assert "FROM postgis/postgis:16-3.4-bookworm AS runtime" in dockerfile assert "COPY --from=frontend-build /frontend/dist/ /usr/share/nginx/html/" in dockerfile assert 'CMD ["/usr/local/bin/geointel-all-in-one-start"]' in dockerfile assert "/usr/local/bin/docker-entrypoint.sh postgres &" in start_script diff --git a/deploy/unraid/Dockerfile.all-in-one b/deploy/unraid/Dockerfile.all-in-one index 38d7f5dd..4c6667cf 100644 --- a/deploy/unraid/Dockerfile.all-in-one +++ b/deploy/unraid/Dockerfile.all-in-one @@ -6,7 +6,7 @@ RUN npm install COPY frontend/ ./ RUN npm run build -FROM postgis/postgis:16-3.4 AS runtime +FROM postgis/postgis:16-3.4-bookworm AS runtime ENV GEOINTEL_ENV=production \ GEOINTEL_API_PREFIX=/api/v1 \