This commit is contained in:
Tykayn 2025-09-15 23:25:11 +02:00 committed by tykayn
parent 656c3fd414
commit 1c17b57d8a
37 changed files with 2818 additions and 469 deletions

View file

@ -1,4 +1,7 @@
FROM postgres:9.5
RUN apt-get update
RUN apt-get install -y postgis postgresql-9.5-postgis-scripts
ADD /setup.sql /docker-entrypoint-initdb.d/
FROM postgres:17.0
RUN apt-get update && \
apt-get install -y postgis postgresql-9.5-postgis-scripts && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
COPY setup.sql /docker-entrypoint-initdb.d/