mirror of
https://github.com/kennethreitz/kennethreitz.org.git
synced 2026-06-05 22:50:17 +00:00
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:
+2
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user