From 4a358050f01d792c816ad33eb41c92a91a4393c7 Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Sun, 22 Feb 2026 19:17:51 -0700 Subject: [PATCH] Fix MCP Dockerfile: include README.md for hatchling build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit hatchling validates readme field during wheel build — the file must be present in the Docker build context. --- Dockerfile.mcp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.mcp b/Dockerfile.mcp index 18c38a5..6d7b239 100644 --- a/Dockerfile.mcp +++ b/Dockerfile.mcp @@ -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 \