From 26417aaf8884ff9294b2a54eb38ca95dedbb6941 Mon Sep 17 00:00:00 2001 From: donpat1to Date: Wed, 22 Oct 2025 00:28:28 +0200 Subject: [PATCH] changed python package testing to simple health check --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 28f8185..abab848 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,10 @@ 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 - <<'EOF' +import ortools +import ortools.sat.python.cp_model +EOF # Frontend build stage FROM node:20-alpine AS frontend-builder