zxsipola123456 commited on
Commit
c44aa51
1 Parent(s): 5fd0143

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -28,6 +28,10 @@ RUN apt-get update && apt-get install -y \
28
  ENV TZ=Asia/Shanghai
29
  RUN dpkg-reconfigure -f noninteractive tzdata
30
 
 
 
 
 
31
  # 设置工作目录
32
  WORKDIR /ragflow
33
 
 
28
  ENV TZ=Asia/Shanghai
29
  RUN dpkg-reconfigure -f noninteractive tzdata
30
 
31
+ # 安装 Node.js 和 npm
32
+ RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && \
33
+ apt-get install -y nodejs
34
+
35
  # 设置工作目录
36
  WORKDIR /ragflow
37