aigenai commited on
Commit
da12040
·
verified ·
1 Parent(s): 0fa10f4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -39,6 +39,11 @@ RUN apt-get update && apt-get install -y curl unzip gnupg build-essential sudo v
39
  ln -fs /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
40
  dpkg-reconfigure --frontend noninteractive tzdata && \
41
 
 
 
 
 
 
42
  # 安装 Node.js 及 n8n
43
  curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
44
  apt-get install -y nodejs && \
 
39
  ln -fs /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
40
  dpkg-reconfigure --frontend noninteractive tzdata && \
41
 
42
+ # 安装必要应用
43
+ curl -O https://downloads.rclone.org/rclone-current-linux-amd64.zip && \
44
+ unzip rclone-current-linux-amd64.zip && cd rclone-*-linux-amd64 && cp rclone /usr/bin/ && \
45
+ chown ${USER}:${USER} /usr/bin/rclone && chmod 755 /usr/bin/rclone && \
46
+
47
  # 安装 Node.js 及 n8n
48
  curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
49
  apt-get install -y nodejs && \