Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
@@ -1,10 +1,8 @@
|
|
1 |
FROM python:3.11.6-bullseye
|
2 |
|
3 |
ENV LLAMA_FAST=true
|
4 |
-
ENV LLAMA_OPENBLAS=true
|
5 |
|
6 |
-
RUN apt update && apt install -y libopenblas-dev
|
7 |
-
RUN update-alternatives --config libblas.so.3
|
8 |
RUN git clone --recurse-submodules https://github.com/spuuntries/llava-cpp-server
|
9 |
WORKDIR llava-cpp-server
|
10 |
|
|
|
1 |
FROM python:3.11.6-bullseye
|
2 |
|
3 |
ENV LLAMA_FAST=true
|
|
|
4 |
|
5 |
+
RUN apt update && apt install -y libopenblas-dev
|
|
|
6 |
RUN git clone --recurse-submodules https://github.com/spuuntries/llava-cpp-server
|
7 |
WORKDIR llava-cpp-server
|
8 |
|