Spaces:
Sleeping
Sleeping
File size: 608 Bytes
5c60763 ee5fd58 5c60763 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | FROM python:3.11-slim
WORKDIR /app
# Install dependencies first (cached layer)
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY models.py .
COPY tasks.py .
COPY graders.py .
COPY environment.py .
COPY app.py .
COPY server/ ./server/
# HF Spaces expects port 7860
EXPOSE 7860
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD python -c "import requests; requests.get('http://localhost:7860/health').raise_for_status()"
# Run the server
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|