FROM ubuntu RUN mkdir /opt/koboldcpp RUN apt update && apt install git build-essential libopenblas-dev wget python3-pip -y RUN git clone https://github.com/lostruins/koboldcpp /opt/koboldcpp WORKDIR /opt/koboldcpp RUN make LLAMA_OPENBLAS=1 RUN wget -O model.ggml https://huggingface.co/KoboldAI/LLaMA2-13B-Tiefighter-GGUF/resolve/main/LLaMA2-13B-Tiefighter.Q4_K_S.gguf CMD ["/bin/python3", "./koboldcpp.py", "--model", "model.ggml", "--port", "7860", "--hordeconfig", "HF_SPACE_Tiefighter", "1", "1"]