Fix Dockerfile to copy tuftecms package before install

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 <noreply@anthropic.com>
This commit is contained in:
2025-09-29 14:14:55 -04:00
parent 6dcad31440
commit a04f2ea95f
+2 -1
View File
@@ -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