Spaces:
Sleeping
Sleeping
| FROM python:3.11-slim | |
| WORKDIR /app | |
| # Install dependencies | |
| RUN pip install --no-cache-dir \ | |
| pydantic>=2.0 \ | |
| fastapi>=0.100 \ | |
| uvicorn>=0.20 \ | |
| openai>=1.0 \ | |
| faker>=18.0 \ | |
| pytest>=7.0 | |
| COPY . . | |
| EXPOSE 7860 | |
| CMD |