From c444e88a10e12c6d85a6d47e99a4bcd010fedf3d Mon Sep 17 00:00:00 2001 From: Nitzan P <9297302+nitzpo@users.noreply.github.com> Date: Thu, 20 Nov 2025 00:07:30 +0200 Subject: [PATCH] Fix Docker build: allow pyproject.toml in build context MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The .dockerignore was excluding pyproject.toml, which is needed for `pip install .` to work after the project was modernized to use pyproject.toml instead of setup.py. This was causing Docker builds to fail with: "failed to calculate checksum: /pyproject.toml: not found" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .dockerignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.dockerignore b/.dockerignore index d2e5c8f..40d7764 100644 --- a/.dockerignore +++ b/.dockerignore @@ -74,9 +74,9 @@ test_*.py # Development files requirements-dev.txt -pyproject.toml -setup.py -setup.cfg +# pyproject.toml # NEEDED for pip install - do not exclude! +# setup.py # NEEDED for pip install - do not exclude! +# setup.cfg # NEEDED for pip install - do not exclude! # Logs and temp files *.log