Compare commits

...

2 Commits

Author SHA1 Message Date
e7d30151b7 copy database files manually 2025-10-22 20:30:08 +02:00
4a006a2e69 copy database files manually 2025-10-22 20:27:01 +02:00

View File

@@ -23,6 +23,9 @@ COPY backend/src/ ./src/
# Build backend
RUN npm run build
# Copy database files manually
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')"