From 02655040f9c0a366ca48ef69c226da9017c4d008 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 25 May 2026 14:58:57 +0000 Subject: [PATCH] Fix Docker: add tool_registry.py to COPY in Dockerfile The Dockerfile copies individual .py files by name; tool_registry.py was missing from the list, causing ModuleNotFoundError at startup. https://claude.ai/code/session_01V9SNVHv8uhS8pejXW9Dt7m --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1921648..3e94040 100755 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir uv ENV PATH="/root/.local/bin:$PATH" -COPY server.py config.py process_runner.py builtin_tools.py ./ +COPY server.py config.py process_runner.py builtin_tools.py tool_registry.py ./ COPY frontend/ ./frontend/ COPY handlers/ ./handlers/