mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-06 08:11:54 +00:00
12 lines
203 B
Docker
12 lines
203 B
Docker
FROM alpine:3.10
|
|
|
|
MAINTAINER Newnius <newnius.cn@gmail.com>
|
|
|
|
RUN apk add --no-cache rsync
|
|
|
|
RUN ln -s /dev/stdout /var/log/rsyncd.log
|
|
|
|
ADD bootstrap.sh /etc/bootstrap.sh
|
|
|
|
ENTRYPOINT ["/etc/bootstrap.sh"]
|