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
2016-12-28 22:03:22 +01:00

8 lines
196 B
Docker

FROM alpine:3.4
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"]