2025-09-16 11:55:33 +02:00
|
|
|
FROM reg.cadoles.com/dh/postgis/postgis:16-3.5-alpine
|
|
|
|
|
|
|
|
# Vous pouvez ajouter ici d'autres commandes, par exemple pour installer des paquets supplémentaires
|
|
|
|
RUN apk update && apk upgrade --no-cache
|
|
|
|
RUN apk add --no-cache gdal gdal-tools gdal-driver-PG
|
|
|
|
|
|
|
|
# Exposer le port par défaut de PostgreSQL
|
|
|
|
EXPOSE 5432
|
|
|
|
|
2025-10-13 09:57:25 +02:00
|
|
|
COPY docker/scripts/init-db.sh /docker-entrypoint-initdb.d/init-db.sh
|
|
|
|
COPY docker/data/RAF20_lambert93.tiff /opt/RAF20_lambert93.tiff
|
2025-09-16 11:55:33 +02:00
|
|
|
RUN chmod +x /docker-entrypoint-initdb.d/init-db.sh
|