SALEETAI commited on
Commit
20adea2
·
verified ·
1 Parent(s): 01873b1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -9,10 +9,10 @@ RUN apt-get update && apt-get install -y \
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
  # Install llama-cpp-python (CPU version) and Gradio
12
- RUN pip install --no-cache-dir \
13
- llama-cpp-python \
14
- gradio \
15
- huggingface_hub
16
 
17
  # Set work directory
18
  WORKDIR /app
 
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
  # Install llama-cpp-python (CPU version) and Gradio
12
+ # Replace your current llama-cpp-python install line with this:
13
+ RUN pip install llama-cpp-python \
14
+ --extra-index-url https://github.io
15
+
16
 
17
  # Set work directory
18
  WORKDIR /app