Update Dockerfile

specify -bullseye for apt installs
This commit is contained in:
2025-07-18 08:42:43 +00:00
parent 8ef7fb9230
commit 063e446983

View File

@@ -5,7 +5,7 @@ COPY . .
RUN npm install && npm run build RUN npm install && npm run build
# Final stage: Node.js + Python + ezdxf # Final stage: Node.js + Python + ezdxf
FROM node:16 FROM node:16-bullseye
# Install Python and pip # Install Python and pip
RUN apt-get update && apt-get install -y python3 python3-pip && \ RUN apt-get update && apt-get install -y python3 python3-pip && \