Fix MCP Dockerfile: include README.md for hatchling build

hatchling validates readme field during wheel build — the file
must be present in the Docker build context.
This commit is contained in:
Ryan Malloy 2026-02-22 19:17:51 -07:00
parent a02d660764
commit 4a358050f0

View File

@ -2,7 +2,7 @@
FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim AS deps
WORKDIR /app
COPY pyproject.toml uv.lock ./
COPY pyproject.toml uv.lock README.md ./
COPY src/ src/
RUN --mount=type=cache,target=/root/.cache/uv \