From f3117c0cf691d99efa5a25965236a69998ec56a4 Mon Sep 17 00:00:00 2001 From: ZisisTsatsas <128043095+ZisisTsatsas@users.noreply.github.com> Date: Mon, 20 Nov 2023 17:31:02 +0000 Subject: [PATCH] fix: openblas_simple missing pkg-config to build (#920) --- docker/openblas_simple/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/openblas_simple/Dockerfile b/docker/openblas_simple/Dockerfile index d4888b4..e213518 100644 --- a/docker/openblas_simple/Dockerfile +++ b/docker/openblas_simple/Dockerfile @@ -6,7 +6,7 @@ ENV HOST 0.0.0.0 COPY . . # Install the package -RUN apt update && apt install -y libopenblas-dev ninja-build build-essential +RUN apt update && apt install -y libopenblas-dev ninja-build build-essential pkg-config RUN python -m pip install --upgrade pip pytest cmake scikit-build setuptools fastapi uvicorn sse-starlette pydantic-settings starlette-context RUN CMAKE_ARGS="-DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS" pip install llama_cpp_python --verbose