Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67a314f commit c4919f0Copy full SHA for c4919f0
docker/openblas_simple/Dockerfile
@@ -6,7 +6,10 @@ ENV HOST 0.0.0.0
6
COPY . .
7
8
# Install the package
9
-RUN apt update && apt install -y libopenblas-dev ninja-build build-essential pkg-config
+RUN apt update && apt install -y libopenblas-dev ninja-build build-essential pkg-config \
10
+ && apt-get clean \
11
+ && rm -rf /var/lib/apt/lists/*
12
+
13
RUN python -m pip install --upgrade pip pytest cmake scikit-build setuptools fastapi uvicorn sse-starlette pydantic-settings starlette-context
14
15
RUN CMAKE_ARGS="-DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS" pip install llama_cpp_python --verbose
0 commit comments