ruslanmv commited on
Commit
d800c4f
·
1 Parent(s): 1e0b4e7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -28,6 +28,9 @@ RUN pip install --no-cache-dir -r requirements.txt
28
  # Install additional software
29
  RUN curl -fsSL https://ollama.com/install.sh | sh
30
 
 
 
 
31
  # Copy the entire application
32
  COPY . .
33
 
 
28
  # Install additional software
29
  RUN curl -fsSL https://ollama.com/install.sh | sh
30
 
31
+ # Download the required model
32
+ RUN ollama download llama3
33
+
34
  # Copy the entire application
35
  COPY . .
36