From b6a0a949a34a682b098c31dcb8d7e40ea62724a9 Mon Sep 17 00:00:00 2001 From: Ahmed Allam <49919286+0xallam@users.noreply.github.com> Date: Sun, 22 Mar 2026 15:50:52 -0700 Subject: [PATCH] Simplify tool file copying in Dockerfile Removed specific tool files from Dockerfile and added a directory copy instead. --- containers/Dockerfile | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/containers/Dockerfile b/containers/Dockerfile index 6734973..9c88e29 100644 --- a/containers/Dockerfile +++ b/containers/Dockerfile @@ -173,15 +173,7 @@ COPY strix/config/ /app/strix/config/ COPY strix/utils/ /app/strix/utils/ COPY strix/telemetry/ /app/strix/telemetry/ COPY strix/runtime/tool_server.py strix/runtime/__init__.py strix/runtime/runtime.py /app/strix/runtime/ - -COPY strix/tools/__init__.py strix/tools/registry.py strix/tools/executor.py strix/tools/argument_parser.py strix/tools/context.py /app/strix/tools/ - -COPY strix/tools/browser/ /app/strix/tools/browser/ -COPY strix/tools/file_edit/ /app/strix/tools/file_edit/ -COPY strix/tools/notes/ /app/strix/tools/notes/ -COPY strix/tools/python/ /app/strix/tools/python/ -COPY strix/tools/terminal/ /app/strix/tools/terminal/ -COPY strix/tools/proxy/ /app/strix/tools/proxy/ +COPY strix/tools/ /app/strix/tools/ RUN echo 'export PATH="/home/pentester/go/bin:/home/pentester/.local/bin:/home/pentester/.npm-global/bin:$PATH"' >> /home/pentester/.bashrc && \ echo 'export PATH="/home/pentester/go/bin:/home/pentester/.local/bin:/home/pentester/.npm-global/bin:$PATH"' >> /home/pentester/.profile