Koboldcpp / Dockerfile
Illumotion's picture
Update Dockerfile
3b01bdb
raw
history blame
No virus
465 Bytes
FROM python
WORKDIR /app
COPY . .
RUN apt update \
&& apt install build-essential wget libopenblas-dev make -y \
&& make LLAMA_OPENBLAS=1 \
&& wget https://huggingface.co/TheBloke/Pygmalion-2-7B-GGUF/resolve/main/pygmalion-2-7b.Q6_K.gguf \
&& apt remove build-essential wget make -y \
&& rm -fr *.bat convert-* ci docs examples otherarchs tests
ENTRYPOINT ["python", "koboldcpp.py", "pygmalion-2-7b.Q6_K.gguf", "--port", "7860", "--smartcontext", "--stream"]