Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -4,8 +4,8 @@ RUN git clone --recurse-submodules https://github.com/trzy/llava-cpp-server
|
|
4 |
WORKDIR llava-cpp-server
|
5 |
|
6 |
RUN wget https://huggingface.co/mys/ggml_llava-v1.5-7b/resolve/main/mmproj-model-f16.gguf
|
7 |
-
RUN wget https://huggingface.co/mys/ggml_llava-v1.5-7b/resolve/main/ggml-model-
|
8 |
|
9 |
RUN make
|
10 |
|
11 |
-
CMD ["bin/llava-server", "-m", "ggml-model-
|
|
|
4 |
WORKDIR llava-cpp-server
|
5 |
|
6 |
RUN wget https://huggingface.co/mys/ggml_llava-v1.5-7b/resolve/main/mmproj-model-f16.gguf
|
7 |
+
RUN wget https://huggingface.co/mys/ggml_llava-v1.5-7b/resolve/main/ggml-model-f16.gguf
|
8 |
|
9 |
RUN make
|
10 |
|
11 |
+
CMD ["bin/llava-server", "-m", "ggml-model-f16.gguf", "--mmproj", "mmproj-model-f16.gguf", "--port", "7860", "--host", "0.0.0.0", "--threads", "4", "--log-http"]
|