From accdc70165e7796d4ed6aba86baa5e048c1eae00 Mon Sep 17 00:00:00 2001 From: donpat1to Date: Wed, 22 Oct 2025 00:03:58 +0200 Subject: [PATCH] changed pyhton package testing to json format --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 28f8185..a7613bc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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