codeMax / Dockerfile
kirikir13's picture
Update Dockerfile
54011cb verified
Raw
History Blame
388 Bytes
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"]