Spaces:
Sleeping
Sleeping
| FROM python:3.11-slim | |
| WORKDIR /app | |
| RUN pip install --no-cache-dir fastapi==0.104.1 uvicorn[standard]==0.24.0 httpx==0.25.2 | |
| COPY app.py . | |
| EXPOSE 7860 | |
| CMD |
| FROM python:3.11-slim | |
| WORKDIR /app | |
| RUN pip install --no-cache-dir fastapi==0.104.1 uvicorn[standard]==0.24.0 httpx==0.25.2 | |
| COPY app.py . | |
| EXPOSE 7860 | |
| CMD |