Spaces:
Sleeping
Sleeping
| FROM python:3.11-slim | |
| WORKDIR /app | |
| COPY server/requirements.txt ./requirements.txt | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY server/ ./server/ | |
| COPY static/ ./static/ | |
| COPY inference.py ./inference.py | |
| COPY models.py ./models.py | |
| COPY client.py ./client.py | |
| COPY __init__.py ./__init__.py | |
| COPY openenv.yaml . | |
| COPY pyproject.toml . | |
| COPY README.md . | |
| EXPOSE 7860 | |
| HEALTHCHECK --interval=30s --timeout=10s --start-period=20s --retries=3 \ | |
| CMD python -c "import urllib.request; urllib.request.urlopen('http://127.0.0.1:7860/health', timeout=5); print('OK')" || exit 1 | |
| CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"] | |