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