From 4b322dfbfb88c829c54ef7ada499700151f989a3 Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Fri, 23 May 2025 10:48:08 +0100 Subject: [PATCH] Added curl to fix healthcheck --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 810d3d0..8cabc11 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,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 apk add blender curl py3-pip RUN pip install --root-user-action ignore --break-system-packages numpy scipy trimesh RUN apk del py3-pip