mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
13 lines
337 B
Docker
13 lines
337 B
Docker
#
|
|
# Dockerfile for drone-rsync-arm
|
|
#
|
|
|
|
FROM easypi/alpine-arm
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN apk add --no-cache bash ca-certificates curl openssh-client rsync
|
|
RUN curl -sSL https://github.com/Drillster/drone-rsync/raw/master/upload.sh > /usr/local/bin/upload.sh
|
|
RUN chmod +x /usr/local/bin/upload.sh
|
|
|
|
ENTRYPOINT ["upload.sh"]
|