mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-09 15:58:30 +00:00
Merge pull request #1583 from CREDO23/fix-mcp-healthcheck-curl
[Fix] MCP: install curl for container healthcheck
This commit is contained in:
commit
70a56b9e9d
1 changed files with 4 additions and 0 deletions
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue