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
Raw Normal View History

2020-04-12 21:43:33 +00:00
FROM alpine
RUN apk add --update-cache \
rsync \
openssh-client \
2020-04-12 21:43:33 +00:00
tzdata \
&& rm -rf /var/cache/apk/*
COPY rsync.sh .
ENTRYPOINT [ "./rsync.sh" ]