lqfjun commited on
Commit
5e94cc3
1 Parent(s): f1e3380

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -17,8 +17,8 @@ RUN cd llama.cpp && \
17
  make LLAMA_OPENBLAS=1 -j2
18
 
19
  # Download model
20
- RUN mkdir model && \
21
- curl -L https://huggingface.co/TheBloke/Mistral-7B-OpenOrca-GGUF/blob/main/mistral-7b-openorca.Q4_K_M.gguf -o model/gguf-model.bin
22
 
23
  COPY . .
24
 
 
17
  make LLAMA_OPENBLAS=1 -j2
18
 
19
  # Download model
20
+ RUN mkdir /model && \
21
+ curl -L https://huggingface.co/TheBloke/Mistral-7B-OpenOrca-GGUF/blob/main/mistral-7b-openorca.Q4_K_M.gguf -o /model/gguf-model.bin
22
 
23
  COPY . .
24