From 58d79558ce7200b22124b864a744312e2a77c8e6 Mon Sep 17 00:00:00 2001 From: Brent Edwards Date: Thu, 12 Feb 2026 06:35:02 +0000 Subject: [PATCH] fix(docker): copy README.md into build stage for hatchling --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 910ac162e..eecb017cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv WORKDIR /app # Copy project metadata and source code -COPY pyproject.toml ./ +COPY pyproject.toml README.md ./ COPY src/ ./src/ # Build wheel