Dockerfiles/rsync/Dockerfile

12 lines
203 B
Docker
Raw Normal View History

2019-12-27 08:57:28 +00:00
FROM alpine:3.10
MAINTAINER Newnius <newnius.cn@gmail.com>
RUN apk add --no-cache rsync
2019-12-27 10:27:25 +00:00
RUN ln -s /var/log/rsyncd.log /dev/stdout
2019-12-27 08:57:28 +00:00
ADD bootstrap.sh /etc/bootstrap.sh
ENTRYPOINT ["/etc/bootstrap.sh"]