| FROM huggingface/zero-gpu-gradio:latest | |
| COPY requirements.txt /tmp/requirements.txt | |
| RUN pip install --no-cache-dir -r /tmp/requirements.txt | |
| RUN pip install --no-cache-dir llama-cpp-python \ | |
| --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cu124 | |
| RUN pip install --no-cache-dir python-docx pdfplumber chardet | |
| COPY app.py /home/user/app/app.py | |
| CMD ["python", "app.py"] |