From a04f2ea95f99a2d3dfeb9fe45825e28beab0806e Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 29 Sep 2025 14:14:55 -0400 Subject: [PATCH] Fix Dockerfile to copy tuftecms package before install MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Copy tuftecms directory before install step since pyproject.toml force-includes templates and static directories. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 70564cd..e13dc01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,9 @@ ENV PYTHONUNBUFFERED=1 \ WORKDIR /app -# Copy dependency files and README (required by pyproject.toml) +# Copy dependency files and required package files COPY pyproject.toml README.md ./ +COPY tuftecms ./tuftecms # Install dependencies directly without creating a venv (since we're in a container) RUN uv pip install . --system