Spaces:
Sleeping
Sleeping
| FROM python:3.13-slim | |
| ADD . /app | |
| WORKDIR /app | |
| RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/* | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| CMD gunicorn app:server --bind :${PORT:-7860} | |