From 2ebfd20db58ec6a998dca76b1e10d5ae3650b845 Mon Sep 17 00:00:00 2001 From: 0xallam Date: Sat, 17 Jan 2026 21:45:14 -0800 Subject: [PATCH] fix: add telemetry module to Dockerfile for posthog error tracking --- containers/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/containers/Dockerfile b/containers/Dockerfile index 4a1b121..a077db7 100644 --- a/containers/Dockerfile +++ b/containers/Dockerfile @@ -170,6 +170,7 @@ RUN echo "# Sandbox Environment" > README.md COPY strix/__init__.py strix/ 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/