# Use official Python image FROM python:3.9-slim # Set working directory WORKDIR /app # Copy requirement file COPY requirements.txt . # Install dependencies RUN pip install --no-cache-dir -r requirements.txt # Copy everything else COPY . . # Expose port 7860 (Hugging Face default) EXPOSE 7860 # Command to run the application CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]