From 839618ef09fd474985fa1a28a84e83d03ff7484a Mon Sep 17 00:00:00 2001 From: CREDO23 Date: Tue, 7 Jul 2026 19:29:19 +0200 Subject: [PATCH] fix(mcp): install curl for container healthcheck probe --- surfsense_mcp/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/surfsense_mcp/Dockerfile b/surfsense_mcp/Dockerfile index 2233411ed..e6c215932 100644 --- a/surfsense_mcp/Dockerfile +++ b/surfsense_mcp/Dockerfile @@ -7,6 +7,10 @@ FROM python:3.12-slim AS deps WORKDIR /app +# curl is used by the container healthcheck probe against /health. +RUN apt-get update && apt-get install -y --no-install-recommends curl \ + && rm -rf /var/lib/apt/lists/* + COPY pyproject.toml uv.lock ./ RUN pip install --no-cache-dir uv && \ uv export --frozen --no-dev --no-emit-project --no-hashes \