burnett01-rsync-deployments/Dockerfile

10 lines
166 B
Docker
Raw Normal View History

2019-12-27 23:08:00 +08:00
FROM alpine:latest
2019-02-09 21:17:45 +08:00
# Update
2019-12-27 23:08:00 +08:00
RUN apk --update add rsync
2019-02-09 21:17:45 +08:00
# Copy entrypoint
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]