File size: 397 Bytes
3e5595b
 
 
 
1ec6819
 
9831d41
1ec6819
3e5595b
1ec6819
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 \
 && wget https://huggingface.co/xzuyn/GPT-J-Shinen-6B-GGML/resolve/main/ggjtv1-model-q5_1.bin \
 && apt remove build-essential wget make -y

 ENTRYPOINT ["python", "koboldcpp.py", "ggjtv1-model-q5_1.bin", "--port", "7860", "--smartcontext", "--useclblast", "{0, 1, 2, 3}"]