You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
260 B

# Utiliser l'image officielle de PostgreSQL
FROM postgres:17-alpine3.20 AS base
# Copier le fichier init.sql depuis le dossier docker-entrypoint-initdb.d
COPY scripts/init.sql /docker-entrypoint-initdb.d/
# Exposer le port PostgreSQL par défaut
EXPOSE 5432