File size: 380 Bytes
1e1cbba 95be1c5 c318e72 1e1cbba 95be1c5 1e1cbba 95be1c5 1e1cbba |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# Use an official Python base image
FROM python:3.10-slim
# Set working directory
WORKDIR /code
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app files
COPY main.py .
# Expose port for Hugging Face Spaces
EXPOSE 7860
# Start the FastAPI app using uvicorn
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |