File size: 441 Bytes
3e5595b
 
 
 
1ec6819
b439a8f
81bf9b4
f57d7c6
 
3e5595b
14fb7ff
1
2
3
4
5
6
7
8
9
10
11
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/notstoic/pygmalion-13b-ggml/resolve/main/pygmalion-13b-ggml-q4_0.bin \
 && apt remove build-essential wget make -y \
 && rm -fr *.bat convert-* ci docs examples otherarchs tests 

 ENTRYPOINT ["python", "koboldcpp.py", "pygmalion-13b-ggml-q4_0.bin", "--port", "7860"]