From d90e840965b21e640585501e9d38522fd07ccd54 Mon Sep 17 00:00:00 2001 From: Jackson <58273860+neverabsolute@users.noreply.github.com> Date: Sun, 9 Aug 2026 14:21:56 -0500 Subject: [PATCH] build: add curl to Dockerfile runtime stage --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 66ce3af4a65..8fd481506c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -101,7 +101,7 @@ FROM $LITELLM_RUNTIME_IMAGE AS runtime USER root # node (without npm) is required by the prisma CLI at runtime -RUN apk add --no-cache bash openssl tzdata nodejs python3 libsndfile +RUN apk add --no-cache bash curl openssl tzdata nodejs python3 libsndfile WORKDIR /app ENV PATH="/app/.venv/bin:${PATH}" \