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
169 B
Docker
Raw Permalink Normal View History

2022-12-04 08:43:07 +00:00
FROM alpine:latest
2020-04-12 21:43:33 +00:00
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" ]