agent harness initialize repo

This commit is contained in:
Roger Oriol
2026-07-19 20:13:54 +02:00
commit 42475d3249
53 changed files with 7391 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
FROM python:3.12-slim
# The agent's tool implementations (filesystem/shell/web) are bind-mounted
# into /agent_tools at runtime, so the image only needs their dependencies.
RUN pip install --no-cache-dir beautifulsoup4
# Keep the container alive; the host runs tools via `docker exec`.
CMD ["sleep", "infinity"]