autogen-dynamic-agent / Dockerfile
Aman
Update space
3d92de3
raw
history blame contribute delete
155 Bytes
FROM python:3.12-slim
RUN pip install uv
COPY requirements.txt ./
COPY . ./
RUN uv pip install -r requirements.txt --system
CMD ["python", "world.py"]