FROM rclone/rclone:latest

RUN apk add --no-cache openssh-client

COPY sync.sh /sync.sh
RUN chmod +x /sync.sh

ENTRYPOINT ["/bin/sh", "/sync.sh"]
