updated python package testing to json format

This commit is contained in:
2025-10-22 00:14:45 +02:00
parent accdc70165
commit 980cfab637

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