# Use an official Python runtime as a parent image FROM python:3.9 # Set the working directory in the container WORKDIR /app # Copy and install dependencies COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy the entire project into the container COPY . . # Expose port 7860 EXPOSE 7860 # Command to run FastAPI on port 7860 CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]