FROM python:3.11-slim WORKDIR /app RUN pip install --no-cache-dir torch==2.5.1 --index-url https://download.pytorch.org/whl/cpu RUN pip install --no-cache-dir transformers==4.48.0 peft==0.14.0 gradio bitsandbytes COPY app.py . EXPOSE 7860 CMD ["python", "app.py"]