changed python package testing to simple health check

This commit is contained in:
2025-10-22 00:38:14 +02:00
parent 02c1253f4f
commit 0821ca7711

View File

@@ -30,12 +30,9 @@ COPY backend/src/ ./src/
RUN npm run build RUN npm run build
# Verify Python and OR-Tools installation # Verify Python and OR-Tools installation
RUN <<'PYCODE' RUN echo "import ortools; import ortools.sat.python.cp_model; print('OR-Tools installed successfully')" > verify_ortools.py \
python - <<'EOF' && python verify_ortools.py \
from ortools.sat.python import cp_model && rm verify_ortools.py
print("OR-Tools installed successfully")
EOF
PYCODE
# Frontend build stage # Frontend build stage
FROM node:20-alpine AS frontend-builder FROM node:20-alpine AS frontend-builder