lemonteaa commited on
Commit
4b539b0
·
1 Parent(s): b9d9fec

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -1,14 +1,15 @@
1
  FROM debian:latest
2
 
3
  RUN apt-get update && apt-get install -y aria2 git build-essential
4
- RUN apt search openblas && apt install -y libopenblas-dev
5
  # && update-alternatives --config libblas.so.3
6
 
7
  WORKDIR /code
8
  RUN git clone https://github.com/ggerganov/llama.cpp
9
 
10
  WORKDIR /code/llama.cpp
11
- RUN make LLAMA_OPENBLAS=1
 
12
 
13
  RUN aria2 -d ./models/7B -o openhermes-2.5-mistral-7b.Q5_K_M.gguf -x 4 https://huggingface.co/TheBloke/OpenHermes-2.5-Mistral-7B-GGUF/resolve/main/openhermes-2.5-mistral-7b.Q5_K_M.gguf
14
 
 
1
  FROM debian:latest
2
 
3
  RUN apt-get update && apt-get install -y aria2 git build-essential
4
+ #RUN apt search openblas && apt install -y libopenblas-dev
5
  # && update-alternatives --config libblas.so.3
6
 
7
  WORKDIR /code
8
  RUN git clone https://github.com/ggerganov/llama.cpp
9
 
10
  WORKDIR /code/llama.cpp
11
+ #RUN make LLAMA_OPENBLAS=1
12
+ RUN make
13
 
14
  RUN aria2 -d ./models/7B -o openhermes-2.5-mistral-7b.Q5_K_M.gguf -x 4 https://huggingface.co/TheBloke/OpenHermes-2.5-Mistral-7B-GGUF/resolve/main/openhermes-2.5-mistral-7b.Q5_K_M.gguf
15