All checks were successful
continuous-integration/drone/push Build is passing
6 lines
140 B
Docker
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' ]
|
|
|