add rclone

This commit is contained in:
2019-05-10 13:47:39 +08:00
parent 9815c2a75c
commit 7f947af49e
4 changed files with 67 additions and 0 deletions

12
rclone/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM debian:9-slim
MAINTAINER Newnius <newnius.cn@gmail.com>
RUN apt-get update && apt-get install curl unzip man-db -y && \
curl https://rclone.org/install.sh | bash && \
rm -rf /var/lib/apt/lists/*
ADD bootstrap.sh /etc/bootstrap.sh
ADD sync.sh /etc/sync.sh
CMD ["/etc/bootstrap.sh"]