From fb4a2f6f20b22e54ac4f2071ee568188217d3842 Mon Sep 17 00:00:00 2001 From: donpat1to Date: Wed, 22 Oct 2025 00:54:43 +0200 Subject: [PATCH] changed from alpine to debian --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index beff595..b9e3407 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Multi-stage build for combined frontend + backend -FROM node:20-alpine AS backend-builder +FROM node:20-bullseye AS backend-builder WORKDIR /app/backend @@ -27,7 +27,7 @@ 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 python3 -c "from ortools.sat.python import cp_model; print('OR-Tools installed successfully')" +#RUN python3 -c "from ortools.sat.python import cp_model; print('OR-Tools installed successfully')" # Frontend build stage