Base all-in-one image on PostgreSQL Bookworm
GeoIntel CI / docs-smoke (push) Has been cancelled
GeoIntel CI / contract-smoke (push) Has been cancelled

This commit is contained in:
Codex
2026-06-17 04:53:10 +02:00
parent 1f9baf1ccf
commit 1acff7c47f
2 changed files with 9 additions and 3 deletions
+5 -1
View File
@@ -6,7 +6,7 @@ RUN npm install
COPY frontend/ ./
RUN npm run build
FROM postgis/postgis:16-3.5 AS runtime
FROM postgres:16-bookworm AS runtime
ENV GEOINTEL_ENV=production \
GEOINTEL_API_PREFIX=/api/v1 \
@@ -27,7 +27,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
libpq-dev \
libproj-dev \
nginx \
postgresql-16-postgis-3 \
postgresql-16-postgis-3-scripts \
proj-bin \
python3-dev \
python3-venv \
&& ln -sf /usr/bin/python3.11 /usr/local/bin/python3 \
&& ln -sf /usr/bin/python3.11 /usr/bin/python3 \
&& rm -rf /var/lib/apt/lists/*