From 980cfab63755514efca0f6bbcfb0d7ba0c3969b3 Mon Sep 17 00:00:00 2001 From: donpat1to Date: Wed, 22 Oct 2025 00:14:45 +0200 Subject: [PATCH] updated python package testing to json format --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a7613bc..06a985d 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