docker-rsync/Dockerfile
Simon Marsh 47c3a14269
All checks were successful
continuous-integration/drone/push Build is passing
initial commit
2021-12-27 16:34:05 +00:00

6 lines
140 B
Docker

FROM alpine
RUN apk add --update bash jq openssh-client rsync && rm -rf /var/cache/apk/*
ADD rsync.sh /rsync.sh
ENTRYPOINT [ '/rsync.sh' ]