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

12 lines
162 B
Docker

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