From 8ec3ae880fea70da081ac42d027d5e394d8bbed5 Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Mon, 7 Sep 2026 18:21:05 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=99=88(docker)=20ignore=20**/.venv=20file?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since we migrated to uv, the venv folder does not live anymore at the project root but inside the src/backend directory. Add a rule in the .dockerignore to ignore it. --- .dockerignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.dockerignore b/.dockerignore index dc3ed9896..83e3d2209 100644 --- a/.dockerignore +++ b/.dockerignore @@ -5,6 +5,8 @@ __pycache__ **/*.pyc venv .venv +**/.venv +**/venv # System-specific files .DS_Store