FROM python:3.11-slim WORKDIR /app RUN pip install uv --quiet --no-cache-dir # cache-bust: 2026-05-13T01:30:00Z COPY requirements.txt . RUN uv pip install --system --no-cache -r requirements.txt COPY . . EXPOSE 7860 CMD ["python", "app.py"]