File size: 366 Bytes
3e5595b
 
 
 
1ec6819
b439a8f
ee58854
1ec6819
3e5595b
ee58854
1
2
3
4
5
6
7
8
9
10
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/Yoshiii/pygmalion-7b-ggml/resolve/main/pygmalion-7b-q5_K_M.bin\
 && apt remove build-essential wget make -y

 ENTRYPOINT ["python", "koboldcpp.py", "pygmalion-7b-q5_K_M.bin", "--port", "7860"]