matthoffner commited on
Commit
3e50743
·
1 Parent(s): 1693bec

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -1,4 +1,6 @@
1
  FROM nvidia/cuda:12.2.0-devel-ubuntu20.04
 
 
2
  # Install dependencies
3
  RUN apt update && \
4
  apt install --no-install-recommends -y build-essential python3 python3-pip wget curl git cmake zlib1g-dev && \
@@ -11,7 +13,7 @@ RUN wget https://huggingface.co/mys/ggml_llava-v1.5-13b/raw/main/ggml-model-q4_k
11
  wget https://huggingface.co/mys/ggml_llava-v1.5-13b/raw/main/mmproj-model-f16.gguf -O mmproj-model-f16.gguf
12
 
13
  # Clone and build llava-server
14
- RUN git clone https://github.com/trzy/llava-cpp-server.git llava && \
15
  cd llava && \
16
  git submodule init && \
17
  git submodule update && \
 
1
  FROM nvidia/cuda:12.2.0-devel-ubuntu20.04
2
+
3
+ ENV DEBIAN_FRONTEND=noninteractive
4
  # Install dependencies
5
  RUN apt update && \
6
  apt install --no-install-recommends -y build-essential python3 python3-pip wget curl git cmake zlib1g-dev && \
 
13
  wget https://huggingface.co/mys/ggml_llava-v1.5-13b/raw/main/mmproj-model-f16.gguf -O mmproj-model-f16.gguf
14
 
15
  # Clone and build llava-server
16
+ RUN git clone https://github.com/matthoffner/llava-cpp-server.git llava && \
17
  cd llava && \
18
  git submodule init && \
19
  git submodule update && \