Welcome text fix
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -6,6 +6,7 @@ RUN mkdir /opt/koboldcpp
|
|
6 |
RUN apt update && apt install git build-essential libopenblas-dev wget python3-pip -y
|
7 |
RUN git clone https://github.com/lostruins/koboldcpp /opt/koboldcpp
|
8 |
WORKDIR /opt/koboldcpp
|
|
|
9 |
RUN make LLAMA_OPENBLAS=1 LLAMA_CUBLAS=1 LLAMA_PORTABLE=1
|
10 |
RUN wget -O model.ggml $MODEL
|
11 |
CMD /bin/python3 ./koboldcpp.py --model model.ggml $ADDITIONAL --port 7860 --hordeconfig $MODEL_NAME 1 1 --preloadstory default.json
|
|
|
6 |
RUN apt update && apt install git build-essential libopenblas-dev wget python3-pip -y
|
7 |
RUN git clone https://github.com/lostruins/koboldcpp /opt/koboldcpp
|
8 |
WORKDIR /opt/koboldcpp
|
9 |
+
COPY default.json /opt/koboldcpp/default.json
|
10 |
RUN make LLAMA_OPENBLAS=1 LLAMA_CUBLAS=1 LLAMA_PORTABLE=1
|
11 |
RUN wget -O model.ggml $MODEL
|
12 |
CMD /bin/python3 ./koboldcpp.py --model model.ggml $ADDITIONAL --port 7860 --hordeconfig $MODEL_NAME 1 1 --preloadstory default.json
|