feat(agent): containerize agent and wire into compose stack

This commit is contained in:
2026-08-23 17:24:06 -05:00
parent 01a9eef06c
commit 9adec1028c
6 changed files with 80 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM python:3.12-slim
WORKDIR /app
COPY pyproject.toml ./
COPY src ./src
RUN pip install --no-cache-dir .
HEALTHCHECK --interval=60s --timeout=10s --start-period=30s \
CMD ["python", "-m", "agent.healthcheck"]
CMD ["python", "-m", "agent"]