zxsipola123456 commited on
Commit
820b544
1 Parent(s): 26fc43c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -0
Dockerfile CHANGED
@@ -15,6 +15,21 @@ RUN apt-get update && apt-get install -y \
15
  supervisor \
16
  && apt-get clean
17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  # 设置工作目录
19
  WORKDIR /ragflow
20
 
 
15
  supervisor \
16
  && apt-get clean
17
 
18
+ RUN apt-get update && apt-get install -y \
19
+ curl \
20
+ gnupg2 \
21
+ lsb-release \
22
+ openssl \
23
+ iputils-ping \
24
+ net-tools \
25
+ unzip \
26
+ apt-transport-https \
27
+ ca-certificates \
28
+ software-properties-common \
29
+ docker.io \ # 安装 Docker CLI
30
+ git # 安装 git
31
+
32
+
33
  # 设置工作目录
34
  WORKDIR /ragflow
35