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
Jesse Quinn 9e935426bd updated code to new maintainer
and using latest alpine
2019-11-27 17:22:48 -03:00

8 lines
191 B
Docker

FROM alpine:latest
MAINTAINER Jesse Quinn <me@jessequinn.info>
RUN apk add --no-cache ca-certificates bash openssh-client rsync
COPY drone.sh /usr/local/
ENTRYPOINT ["/usr/local/drone.sh"]