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