agentcorpenv / Dockerfile
riaz9311's picture
refactor: cleanup
b4864ae
Raw
History Blame Contribute Delete
312 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY . /app
RUN apt-get update && apt-get install -y --no-install-recommends curl && rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir -r requirements.txt
ENV PYTHONPATH="/app"
EXPOSE 8000
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "8000"]