MODEL_NAME Fixes
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -7,5 +7,5 @@ RUN git clone https://github.com/lostruins/koboldcpp /opt/koboldcpp
|
|
7 |
WORKDIR /opt/koboldcpp
|
8 |
RUN make LLAMA_OPENBLAS=1 LLAMA_CUBLAS=1 LLAMA_PORTABLE=1
|
9 |
RUN wget -O model.ggml $MODEL
|
10 |
-
CMD ["/bin/python3", "./koboldcpp.py", "--model", "model.ggml", "--usecublas", "mmq", "--gpulayers", "99", "--multiuser", "--contextsize", "4096", "--port", "7860", "--hordeconfig", $MODEL_NAME, "1", "1"]
|
11 |
|
|
|
7 |
WORKDIR /opt/koboldcpp
|
8 |
RUN make LLAMA_OPENBLAS=1 LLAMA_CUBLAS=1 LLAMA_PORTABLE=1
|
9 |
RUN wget -O model.ggml $MODEL
|
10 |
+
CMD ["/bin/python3", "./koboldcpp.py", "--model", "model.ggml", "--usecublas", "mmq", "--gpulayers", "99", "--multiuser", "--contextsize", "4096", "--port", "7860", "--hordeconfig", "$MODEL_NAME", "1", "1"]
|
11 |
|