Spaces:
Sleeping
Sleeping
File size: 729 Bytes
fe4f8a8 dd2ef0b fe4f8a8 dd2ef0b fe4f8a8 dd2ef0b | 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 27 28 | FROM python:3.10-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
git \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements and install
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the application code
COPY . .
# Set environment variables for the ML engine
ENV PYTHONUNBUFFERED=1
ENV PORT=7860
# Expose the port FastAPI runs on
EXPOSE 7860
# Command to run the application using gunicorn for higher stability
# We use uvicorn workers for high-concurrency FastAPI support
CMD ["gunicorn", "app:app", "--workers", "1", "--worker-class", "uvicorn.workers.UvicornWorker", "--bind", "0.0.0.0:7860", "--timeout", "600"]
|