From 4a006a2e694a8125aa97936448d25e5bb4657789 Mon Sep 17 00:00:00 2001 From: donpat1to Date: Wed, 22 Oct 2025 20:27:01 +0200 Subject: [PATCH] copy database files manually --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 49963b8..51dcc28 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,6 +23,9 @@ COPY backend/src/ ./src/ # Build backend RUN npm run build +# Copy database files manually (tsc doesn't copy non-TS files) +RUN cp -r src/database/ dist/database/ + # Verify Python and OR-Tools installation RUN python -c "from ortools.sat.python import cp_model; print('OR-Tools installed successfully')"