/ services / agent-scheduler / Dockerfile
Dockerfile
 1  FROM python:3.12-slim
 2  
 3  WORKDIR /app
 4  
 5  RUN pip install --no-cache-dir \
 6      nats-py \
 7      pyyaml \
 8      croniter
 9  
10  COPY scheduler.py schedule.yaml ./
11  
12  CMD ["python", "scheduler.py"]