Spaces:
Running
Running
File size: 379 Bytes
8229bc6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
FROM python:3.12-slim
# Set working directory
WORKDIR /app
# Copy requirements and model
COPY requirements.txt .
COPY model.onnx .
COPY main.py .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose port 7860 (required for Hugging Face Spaces)
EXPOSE 7860
# Run the FastAPI app
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |