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

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