mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-07 08:31:55 +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 /var/log/rsyncd.log /dev/stdout
|
|
|
|
ADD bootstrap.sh /etc/bootstrap.sh
|
|
|
|
ENTRYPOINT ["/etc/bootstrap.sh"]
|