mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-07 08:31:55 +00:00
13 lines
292 B
Docker
13 lines
292 B
Docker
|
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"]
|