Z43L commited on
Commit
17923b7
·
verified ·
1 Parent(s): e26cf97

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -5,7 +5,7 @@ ARG APP_COLOR
5
  ARG APP_NAME
6
 
7
 
8
- FROM node:18 as chatui-builder
9
  ARG MODEL_NAME
10
  ARG MODEL_PARAMS
11
  ARG APP_COLOR
@@ -22,7 +22,7 @@ RUN git clone https://github.com/ggerganov/llama.cpp
22
  RUN cd llama.cpp
23
  RUN make llama.cpp/Makefile
24
  RUN cd ..
25
-
26
  RUN git clone https://github.com/huggingface/chat-ui.git
27
 
28
  WORKDIR /app/chat-ui
 
5
  ARG APP_NAME
6
 
7
 
8
+ FROM node:18.17.0 as chatui-builder
9
  ARG MODEL_NAME
10
  ARG MODEL_PARAMS
11
  ARG APP_COLOR
 
22
  RUN cd llama.cpp
23
  RUN make llama.cpp/Makefile
24
  RUN cd ..
25
+ RUN curl -qL https://www.npmjs.com/install.sh | sh
26
  RUN git clone https://github.com/huggingface/chat-ui.git
27
 
28
  WORKDIR /app/chat-ui