Files
agent-template/deploy/Dockerfile
T
Admin_IT-one d406da1312
Deploy / validate-image (push) Successful in 45s
Eval Gate / evaluate (push) Failing after 1m42s
Add IT-One AI agent template, eval gate, and deployment skeleton
2026-08-21 12:14:55 +02:00

6 lines
128 B
Docker

FROM python:3.12-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "-m", "src.main"]