Files
ltbxd-actorle/docker/database/Dockerfile
thibaud-leclere 21b0f681be
Some checks failed
Build and Push Docker Images / Build app image (push) Failing after 3m4s
Build and Push Docker Images / Build database image (push) Failing after 15s
chore(docker): dockerize app, add workflow to push image on gitea registry
2026-03-28 09:22:47 +01:00

9 lines
189 B
Docker

FROM postgres:16-alpine
ENV POSTGRES_DB=app \
POSTGRES_USER=app \
POSTGRES_PASSWORD=pwd
# Add custom initialization scripts if needed:
# COPY initdb/ /docker-entrypoint-initdb.d/