rsync-deployments/Dockerfile

11 lines
198 B
Docker
Raw Permalink Normal View History

2019-12-27 16:08:00 +01:00
FROM alpine:latest
2019-02-09 14:17:45 +01:00
# Update
2019-12-27 16:14:47 +01:00
RUN apk --update --no-cache add rsync bash openssh-client
2019-02-09 14:17:45 +01:00
# Copy entrypoint
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
2019-12-27 16:11:54 +01:00
2019-02-09 14:17:45 +01:00
ENTRYPOINT ["/entrypoint.sh"]