From 7260d99d9e99ff6215d3ebe53ef10129271fc703 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Sun, 28 Jun 2026 16:06:39 +0200 Subject: [PATCH] Keep curl in runtime image for Coolify Coolify requires curl to be present in the container. Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d65938c..7c3d14b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,7 +42,6 @@ RUN apt-get update && \ RUN curl -sL -o /app/model.onnx https://huggingface.co/onnx-community/all-MiniLM-L6-v2-ONNX/resolve/main/onnx/model.onnx && \ curl -sL -o /app/model.onnx_data https://huggingface.co/onnx-community/all-MiniLM-L6-v2-ONNX/resolve/main/onnx/model.onnx_data && \ curl -sL -o /app/tokenizer.json https://huggingface.co/onnx-community/all-MiniLM-L6-v2-ONNX/resolve/main/tokenizer.json && \ - apt-get remove -y curl 2>/dev/null || true && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*