FROM python:3.11-slim

WORKDIR /app

RUN pip install AgentService --upgrade

COPY . .

CMD ["python", "manage.py", "start"]
