Spaces:
Paused
Paused
File size: 570 Bytes
3299013 1416ca6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
FROM python:latest
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
RUN pip install -U "huggingface_hub[cli,hf_transfer]"
RUN HF_HUB_ENABLE_HF_TRANSFER=1 \
huggingface-cli download gingdev/ictu-llamafile llama2-7b-ictu.llamafile --local-dir . --local-dir-use-symlinks=True && \
chmod +x ./llama2-7b-ictu.llamafile
ENTRYPOINT [ "/usr/bin/bash" ]
CMD [ "./llama2-7b-ictu.llamafile", "--host", "0.0.0.0", "--port", "7860", "-c", "4096", "--chat-template", "chatml", "--embedding", "--nobrowser" ]
|