fix: openblas_simple missing pkg-config to build (#920)
This commit is contained in:
parent
55efc9e6b2
commit
f3117c0cf6
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ ENV HOST 0.0.0.0
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
# Install the package
|
# 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 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
|
RUN CMAKE_ARGS="-DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS" pip install llama_cpp_python --verbose
|
||||||
|
|
Loading…
Reference in a new issue