Z43L commited on
Commit
6472b82
·
verified ·
1 Parent(s): 7922c5e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -17,7 +17,7 @@ WORKDIR /app
17
  RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
18
  git gettext && \
19
  rm -rf /var/lib/apt/lists/*
20
-
21
 
22
  RUN git clone https://github.com/huggingface/chat-ui.git
23
 
@@ -109,7 +109,9 @@ RUN useradd -m -u 1000 user
109
 
110
  # Switch to the "user" user
111
  USER user
112
-
 
 
113
  ENV HOME=/home/user \
114
  PATH=/home/user/.local/bin:$PATH
115
 
 
17
  RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
18
  git gettext && \
19
  rm -rf /var/lib/apt/lists/*
20
+ RUN apt install make
21
 
22
  RUN git clone https://github.com/huggingface/chat-ui.git
23
 
 
109
 
110
  # Switch to the "user" user
111
  USER user
112
+ RUN git clone https://github.com/ggerganov/llama.cpp
113
+ RUN cd llama.cpp
114
+ RUN make
115
  ENV HOME=/home/user \
116
  PATH=/home/user/.local/bin:$PATH
117