FROM python:3.12-slim WORKDIR /app COPY . /app # Install only the pinned dependencies – no extra gradio version RUN pip install --no-cache-dir -r requirements.txt \ && pip install --no-cache-dir "gradio[mcp]==4.31.5" EXPOSE 7860 CMD ["python", "app.py"]