From a823a79f6b3ad3b47984eb7aecfb1b0f6e555d2b Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Sun, 12 Jul 2026 15:20:51 +0200 Subject: [PATCH] fix: install curl in presentation image for healthcheck --- k-tv-backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k-tv-backend/Dockerfile b/k-tv-backend/Dockerfile index 0494c11..6118d44 100644 --- a/k-tv-backend/Dockerfile +++ b/k-tv-backend/Dockerfile @@ -6,7 +6,7 @@ RUN cargo build --release -p presentation -p worker -p playout # Presentation image FROM debian:bookworm-slim AS presentation WORKDIR /app -RUN apt-get update && apt-get install -y --no-install-recommends libssl3 ca-certificates && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y --no-install-recommends libssl3 ca-certificates curl && rm -rf /var/lib/apt/lists/* COPY --from=builder /app/target/release/k-tv . RUN mkdir -p /app/data EXPOSE 3000