changed pyhton package testing to json format

This commit is contained in:
2025-10-22 00:03:58 +02:00
parent 9ac0309917
commit accdc70165

View File

@@ -30,7 +30,7 @@ COPY backend/src/ ./src/
RUN npm run build
# Verify Python and OR-Tools installation
RUN python -c "from ortools.sat.python import cp_model; print('OR-Tools installed successfully')"
RUN ["python", "-c", "from ortools.sat.python import cp_model; print('OR-Tools installed successfully')"]
# Frontend build stage
FROM node:20-alpine AS frontend-builder