diff --git a/Dockerfile b/Dockerfile index 16deb378..e7d33227 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,6 +33,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ # Copy application code COPY ./app /app/app COPY ./frontend /app/frontend +COPY ./migrations /app/migrations +COPY ./alembic.ini /app/alembic.ini COPY ./LICENSE /app/LICENSE # Copy build metadata files (generated at build time) diff --git a/Dockerfile.local b/Dockerfile.local index 2775c156..4ae482d0 100644 --- a/Dockerfile.local +++ b/Dockerfile.local @@ -27,6 +27,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ COPY ./app /app/app COPY ./frontend /app/frontend +COPY ./migrations /app/migrations +COPY ./alembic.ini /app/alembic.ini COPY ./LICENSE /app/LICENSE COPY ./VERSION /app/VERSION COPY ./BUILD_DATE /app/BUILD_DATE