Spaces:
Sleeping
Sleeping
| # π₯ MAXIMUM YEET LISTENER DOCKERFILE | |
| FROM python:3.11-slim | |
| # set working dir | |
| WORKDIR /app | |
| # copy app and install dependencies | |
| COPY app.py . | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # expose port for FastAPI | |
| EXPOSE 7860 | |
| # π Run with Uvicorn | |
| CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |