Spaces:
Runtime error
Runtime error
# Base image with Python and pip | |
FROM python:3.9 | |
# Set working directory | |
WORKDIR /app | |
# Copy requirements and install dependencies | |
COPY requirements.txt . | |
RUN pip install --no-cache-dir -r requirements.txt | |
# Copy application files | |
COPY . . | |
# Expose the FastAPI port | |
EXPOSE 7860 | |
# Start the FastAPI app using Uvicorn | |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] | |