From 063e44698385083fc4d8387dbdae5645b5bd2e93 Mon Sep 17 00:00:00 2001 From: Admin Date: Fri, 18 Jul 2025 08:42:43 +0000 Subject: [PATCH] Update Dockerfile specify -bullseye for apt installs --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7f373cc..62f346d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ COPY . . RUN npm install && npm run build # Final stage: Node.js + Python + ezdxf -FROM node:16 +FROM node:16-bullseye # Install Python and pip RUN apt-get update && apt-get install -y python3 python3-pip && \