Koboldcpp / Dockerfile
faisalhr1997's picture
Upload Dockerfile
6781995
raw
history blame contribute delete
No virus
509 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/Redmond-Puffin-13B-GGML/resolve/main/redmond-puffin-13b.ggmlv3.q2_K.bin \
&& apt remove build-essential wget make -y
ENTRYPOINT ["python", "koboldcpp.py", "redmond-puffin-13b.ggmlv3.q2_K.bin", "--port", "7860","--contextsize","4096","--stream","--smartcontext","--unbantokens","--debugmode","--usemirostat","2","5.0","0.1"]