Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -23,7 +23,7 @@ COPY ./requirements.txt /code/requirements.txt
|
|
| 23 |
RUN pip install llama-cpp-python \
|
| 24 |
--extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu
|
| 25 |
|
| 26 |
-
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 27 |
|
| 28 |
RUN useradd -m -u 1000 user
|
| 29 |
|
|
|
|
| 23 |
RUN pip install llama-cpp-python \
|
| 24 |
--extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu
|
| 25 |
|
| 26 |
+
RUN CMAKE_ARGS="-DLLAMA_NATIVE=off" pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 27 |
|
| 28 |
RUN useradd -m -u 1000 user
|
| 29 |
|