rsync-deployments/Dockerfile

13 lines
376 B
Text
Raw Permalink Normal View History

# drinternet/rsync@v1.5.1
FROM drinternet/rsync@sha256:e61f4047577b566872764fa39299092adeab691efb3884248dbd6495dc926527
2019-02-09 13:17:45 +00:00
# always force-upgrade rsync to get the latest security fixes
RUN apk update && apk add --no-cache --upgrade rsync
RUN rm -rf /var/cache/apk/*
2019-02-09 13:17:45 +00:00
# Copy entrypoint
2020-01-05 11:03:17 +00:00
COPY entrypoint.sh /entrypoint.sh
2019-02-09 13:17:45 +00:00
RUN chmod +x /entrypoint.sh
2019-12-27 16:11:54 +01:00
2019-02-09 13:17:45 +00:00
ENTRYPOINT ["/entrypoint.sh"]