From 17f1ba04260d3591ec2fb774b70dee3ad1e5f034 Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Wed, 21 May 2025 10:57:41 +0100 Subject: [PATCH] Fixed new build with extra packages --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 540b8a0..19b1902 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,8 @@ 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 numpy scipy trimesh -RUN del py3-pip +RUN pip install --break-system-packages numpy scipy trimesh +RUN apk del py3-pip WORKDIR /root/ COPY --from=builder /app/server .