From 2bfb1e29d7d06d4657aca097109dd1183bafa3e8 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Thu, 11 Dec 2025 21:08:53 +0100 Subject: [PATCH] fix: include pyproject.toml in Docker image for version info MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index f6cc7aa..a468cb4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,7 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy application +COPY pyproject.toml . COPY src/ ./src/ COPY static/ ./static/