From 3740ea0b7fcace527720fbc05f81d90abf0b833c Mon Sep 17 00:00:00 2001 From: YOUNG Date: Mon, 9 Mar 2026 14:30:17 -0500 Subject: [PATCH] Fix add PYTHONPATH to Dockerfile for Alembic module resolution --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index a2c472b..cc59a92 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,8 @@ COPY backend/ ./ # Copy built frontend into static directory COPY --from=frontend-build /app/frontend/dist ./static +ENV PYTHONPATH=/app + EXPOSE 8000 # Run migrations then start server