From e52ace3a6da7b17de888ec36790fc8bd64cf33f1 Mon Sep 17 00:00:00 2001 From: HarveyXia2003 Date: Tue, 25 Nov 2025 14:50:54 +0800 Subject: [PATCH] fix: add curl to runner stage for healthcheck compatibility - Install curl in runner stage to support healthcheck functionality - Fixes healthcheck failure in docker-compose - Minimal change with significant impact on usability --- rust/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/Dockerfile b/rust/Dockerfile index f189258826e..9f2c205c295 100644 --- a/rust/Dockerfile +++ b/rust/Dockerfile @@ -60,7 +60,7 @@ RUN --mount=type=cache,sharing=locked,target=/chroma/target/ \ FROM debian:stable-slim AS runner -RUN apt-get update && apt-get install -y dumb-init libssl-dev ca-certificates && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y dumb-init libssl-dev ca-certificates curl && rm -rf /var/lib/apt/lists/* FROM runner AS cli