mirror of
https://github.com/donpat1to/Schichtenplaner.git
synced 2025-12-01 15:05:45 +01:00
changed python package testing to simple health check
This commit is contained in:
@@ -30,7 +30,10 @@ 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 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
|
# Frontend build stage
|
||||||
FROM node:20-alpine AS frontend-builder
|
FROM node:20-alpine AS frontend-builder
|
||||||
|
|||||||
Reference in New Issue
Block a user