This repository has been archived on 2025-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
drone-rsync/Dockerfile
2019-10-01 14:31:56 +02:00

8 lines
196 B
Docker

FROM alpine:3.8
MAINTAINER Michael de Wit <michael@drillster.com>
RUN apk add --no-cache ca-certificates bash openssh-client rsync
COPY upload.sh /usr/local/
ENTRYPOINT ["/usr/local/upload.sh"]