fix: include pyproject.toml in Docker image for version info

The version was showing as 0.0.0 because pyproject.toml wasn't
being copied into the Docker image.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-11 21:08:53 +01:00
co-authored by Claude Opus 4.5
parent 0f224b460e
commit 2bfb1e29d7
+1
View File
@@ -12,6 +12,7 @@ COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
# Copy application # Copy application
COPY pyproject.toml .
COPY src/ ./src/ COPY src/ ./src/
COPY static/ ./static/ COPY static/ ./static/