first commit

This commit is contained in:
2025-09-18 14:37:09 -04:00
commit 0473fdb225
13 changed files with 481 additions and 0 deletions

10
agent/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY agent.py rules.yaml ./
ENV PORT=8080
CMD ["uvicorn", "agent:app", "--host", "0.0.0.0", "--port", "8080"]