This repository has been archived on 2022-12-04. You can view files and clone it, but cannot push or open issues or pull requests.
rsync-docker/Dockerfile
2020-04-12 23:43:33 +02:00

11 lines
141 B
Docker

FROM alpine
RUN apk add --update-cache \
rsync \
tzdata \
&& rm -rf /var/cache/apk/*
COPY rsync.sh .
ENTRYPOINT [ "./rsync.sh" ]