Fix missing comma
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -6,4 +6,6 @@ RUN mkdir /models
|
|
6 |
|
7 |
RUN curl -L https://huggingface.co/TheBloke/deepseek-coder-6.7B-instruct-GGUF/resolve/main/deepseek-coder-6.7b-instruct.Q6_K.gguf --output /models/deepseek-coder-6.7b-instruct.Q6_K.gguf
|
8 |
|
9 |
-
ENTRYPOINT [ "/server"
|
|
|
|
|
|
6 |
|
7 |
RUN curl -L https://huggingface.co/TheBloke/deepseek-coder-6.7B-instruct-GGUF/resolve/main/deepseek-coder-6.7b-instruct.Q6_K.gguf --output /models/deepseek-coder-6.7b-instruct.Q6_K.gguf
|
8 |
|
9 |
+
ENTRYPOINT [ "/server" ]
|
10 |
+
|
11 |
+
CMD [ "-ngl", "32", "--host", "0.0.0.0", "--port", "7860", "--model", "/models/deepseek-coder-6.7b-instruct.Q6_K.gguf", "-c", "4096", "--chat-template", "deepseek" ]
|