FROM python:3.11-slim WORKDIR /app RUN apt-get update && apt-get install -y \ git \ curl \ wget \ && rm -rf /var/lib/apt/lists/* RUN pip install --no-cache-dir \ torch \ transformers \ accelerate \ gradio COPY app.py . EXPOSE 7860 CMD ["python", "app.py"]