fix: Add Alembic directory and configuration file to production Dockerfile for migration support #26

Merged
mo merged 1 commits from ph4 into prod 2025-06-01 17:16:39 +02:00
Showing only changes of commit f4eeb00acf - Show all commits

View File

@ -45,6 +45,8 @@ WORKDIR /app
# Copy only necessary application files (be selective)
COPY --chown=appuser:appuser app/ ./app/
COPY --chown=appuser:appuser alembic/ ./alembic/
COPY --chown=appuser:appuser alembic.ini ./
COPY --chown=appuser:appuser *.py ./
COPY --chown=appuser:appuser requirements.txt ./