Mungert commited on
Commit
6d2e19b
·
verified ·
1 Parent(s): 4abf0b1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -51,7 +51,7 @@ USER user
51
  # Clone and build llama.cpp with OpenBLAS support as the non-root user
52
  RUN git clone https://github.com/ggerganov/llama.cpp /home/user/code/models/llama.cpp && \
53
  cd /home/user/code/models/llama.cpp && \
54
- export PKG_CONFIG_PATH=/opt/OpenBLAS/lib/pkgconfig:$PKG_CONFIG_PATHa && \
55
  cmake -B build -DGGML_BLAS=ON -DGGML_BLAS_VENDOR=OpenBLAS -DBLAS_INCLUDE_DIRS=/home/user/code/models/OpenBLAS -DLLAMA_CURL=OFF && \
56
  cmake --build build --config Release -j2 && \
57
  cp /home/user/code/models/llama.cpp/build/bin/* /home/user/code/models/llama.cpp/
 
51
  # Clone and build llama.cpp with OpenBLAS support as the non-root user
52
  RUN git clone https://github.com/ggerganov/llama.cpp /home/user/code/models/llama.cpp && \
53
  cd /home/user/code/models/llama.cpp && \
54
+ export PKG_CONFIG_PATH=/opt/OpenBLAS/lib/pkgconfig:$PKG_CONFIG_PATH && \
55
  cmake -B build -DGGML_BLAS=ON -DGGML_BLAS_VENDOR=OpenBLAS -DBLAS_INCLUDE_DIRS=/home/user/code/models/OpenBLAS -DLLAMA_CURL=OFF && \
56
  cmake --build build --config Release -j2 && \
57
  cp /home/user/code/models/llama.cpp/build/bin/* /home/user/code/models/llama.cpp/