jljiu commited on
Commit
a9a3679
·
verified ·
1 Parent(s): 9cc937c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -17,6 +17,10 @@ USER user
17
  # 安装Gradio及其依赖
18
  RUN pip install gradio
19
 
 
 
 
 
20
  # 将当前目录下的所有文件复制到容器内的/app目录
21
  COPY . /app
22
 
 
17
  # 安装Gradio及其依赖
18
  RUN pip install gradio
19
 
20
+ # 拉取llama3.1 - 8b - chinese - chat模型
21
+ RUN ollama pull llama3.1 - 8b - chinese - chat
22
+
23
+
24
  # 将当前目录下的所有文件复制到容器内的/app目录
25
  COPY . /app
26