matthoffner commited on
Commit
9ed6a31
1 Parent(s): 536c9a5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -19,7 +19,7 @@ RUN pip3 install --upgrade pip && \
19
  pip3 install -r requirements.txt
20
 
21
  RUN export PATH="/usr/local/cuda/bin:$PATH"
22
- RUN CT_CUBLAS=1 pip install ctransformers --no-binary ctransformers
23
  # Assume the specific file is hosted somewhere and is publicly accessible, replace the URL with the actual URL
24
  #RUN wget -O falcon40b-instruct.ggmlv3.q2_K.bin https://huggingface.co/TheBloke/falcon-40b-instruct-GGML/raw/main/falcon40b-instruct.ggmlv3.q2_K.bin
25
 
 
19
  pip3 install -r requirements.txt
20
 
21
  RUN export PATH="/usr/local/cuda/bin:$PATH"
22
+ RUN pip install ctransformers --no-binary ctransformers
23
  # Assume the specific file is hosted somewhere and is publicly accessible, replace the URL with the actual URL
24
  #RUN wget -O falcon40b-instruct.ggmlv3.q2_K.bin https://huggingface.co/TheBloke/falcon-40b-instruct-GGML/raw/main/falcon40b-instruct.ggmlv3.q2_K.bin
25