File size: 365 Bytes
3e5595b
 
 
 
 
 
 
 
 
 
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"]