Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -3,6 +3,10 @@ FROM python:3.11.6-bullseye
|
|
3 |
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-f16.gguf
|
8 |
|
|
|
3 |
RUN git clone --recurse-submodules https://github.com/trzy/llava-cpp-server
|
4 |
WORKDIR llava-cpp-server
|
5 |
|
6 |
+
WORKDIR llama.cpp
|
7 |
+
RUN git pull origin master
|
8 |
+
WORKDIR ..
|
9 |
+
|
10 |
RUN wget https://huggingface.co/mys/ggml_llava-v1.5-7b/resolve/main/mmproj-model-f16.gguf
|
11 |
RUN wget https://huggingface.co/mys/ggml_llava-v1.5-7b/resolve/main/ggml-model-f16.gguf
|
12 |
|