Dockerfiles/rclone/amd64/Dockerfile

13 lines
292 B
Docker
Raw Permalink Normal View History

2019-05-10 05:47:39 +00:00
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"]