Merge pull request #1583 from CREDO23/fix-mcp-healthcheck-curl

[Fix] MCP: install curl for container healthcheck
This commit is contained in:
Thierry CH. 2026-07-07 19:30:22 +02:00 committed by GitHub
commit 70a56b9e9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 \