mrmadblack commited on
Commit
cdd856a
·
verified ·
1 Parent(s): a37be2a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -13,7 +13,9 @@ WORKDIR /app
13
  RUN git clone https://github.com/ggerganov/llama.cpp.git
14
 
15
  WORKDIR /app/llama.cpp
16
- RUN make -j2
 
 
17
 
18
  WORKDIR /app
19
 
 
13
  RUN git clone https://github.com/ggerganov/llama.cpp.git
14
 
15
  WORKDIR /app/llama.cpp
16
+
17
+ RUN cmake -B build
18
+ RUN cmake --build build -j2
19
 
20
  WORKDIR /app
21