matthoffner commited on
Commit
7f8ddf7
·
1 Parent(s): 23763ae

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -10,7 +10,7 @@ WORKDIR /app
10
 
11
  RUN export PATH="/usr/local/cuda/bin:$PATH"
12
  RUN wget -qO- "https://cmake.org/files/v3.17/cmake-3.17.0-Linux-x86_64.tar.gz" | tar --strip-components=1 -xz -C /usr/local
13
- RUN CMAKE_ARGS="-DLLAMA_CUBLAS=on" FORCE_CMAKE=1 pip install llama-cpp-python@https://github.com/abetlen/llama-cpp-python --no-cache-dir
14
  COPY requirements.txt ./
15
  RUN pip install --upgrade pip && \
16
  pip install -r requirements.txt
 
10
 
11
  RUN export PATH="/usr/local/cuda/bin:$PATH"
12
  RUN wget -qO- "https://cmake.org/files/v3.17/cmake-3.17.0-Linux-x86_64.tar.gz" | tar --strip-components=1 -xz -C /usr/local
13
+ RUN CMAKE_ARGS="-DLLAMA_CUBLAS=on" FORCE_CMAKE=1 pip install git+https://github.com/abetlen/llama-cpp-python --no-cache-dir
14
  COPY requirements.txt ./
15
  RUN pip install --upgrade pip && \
16
  pip install -r requirements.txt