From 5852539afdf57c4adfc64b72e688ffd3094689e4 Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Wed, 21 May 2025 12:28:39 +0100 Subject: [PATCH] Suppressed pip root install warning --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 19b1902..810d3d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -o server ./main.go FROM alpine:latest RUN apk update RUN apk add blender py3-pip -RUN pip install --break-system-packages numpy scipy trimesh +RUN pip install --root-user-action ignore --break-system-packages numpy scipy trimesh RUN apk del py3-pip WORKDIR /root/