Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
@@ -51,8 +51,10 @@ ENV PATH="/usr/local/cuda/bin:/app:/app/text2vec-transformers:/app/text2vec-tran
|
|
51 |
|
52 |
# Install requirements packages, semantic text splitter, llama_cpp.
|
53 |
COPY ./requirements.txt /app/requirements.txt
|
54 |
-
RUN pip3 install --break-system-packages --no-cache-dir --upgrade -r /app/requirements.txt
|
55 |
-
RUN pip3 install --break-system-packages https://files.pythonhosted.org/packages/13/87/e0cb08c2d4bd7d38ab63816b306c8b1e7cfdc0e59bd54462e8b0df069078/semantic_text_splitter-0.6.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
|
|
|
56 |
|
57 |
#RUN pip3 install --break-system-packages llama_cpp_python
|
58 |
#RUN FORCE_CMAKE=1 CMAKE_SYSTEM_PROCESSOR=AMD64 pip3 install --break-system-packages --verbose --no-cache-dir llama-cpp-python --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu
|
|
|
51 |
|
52 |
# Install requirements packages, semantic text splitter, llama_cpp.
|
53 |
COPY ./requirements.txt /app/requirements.txt
|
54 |
+
#RUN pip3 install --break-system-packages --no-cache-dir --upgrade -r /app/requirements.txt
|
55 |
+
#RUN pip3 install --break-system-packages https://files.pythonhosted.org/packages/13/87/e0cb08c2d4bd7d38ab63816b306c8b1e7cfdc0e59bd54462e8b0df069078/semantic_text_splitter-0.6.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
56 |
+
RUN pip3 install --no-cache-dir --upgrade -r /app/requirements.txt
|
57 |
+
RUN pip3 install -system-packages https://files.pythonhosted.org/packages/13/87/e0cb08c2d4bd7d38ab63816b306c8b1e7cfdc0e59bd54462e8b0df069078/semantic_text_splitter-0.6.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
58 |
|
59 |
#RUN pip3 install --break-system-packages llama_cpp_python
|
60 |
#RUN FORCE_CMAKE=1 CMAKE_SYSTEM_PROCESSOR=AMD64 pip3 install --break-system-packages --verbose --no-cache-dir llama-cpp-python --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu
|