FROM python:3.9-slim WORKDIR /app # Install deps COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy source COPY . . # Expose port EXPOSE 7860 # Run CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] # Force Rebuild: 2026-01-02-1715