Add rsync script and Dockerfile

This commit is contained in:
Michael de Wit
2016-12-28 22:03:07 +01:00
parent 8e588f0d15
commit 9f7809fcb3
3 changed files with 119 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
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"]