2019-12-27 16:08:00 +01:00
|
|
|
FROM alpine:latest
|
2019-02-09 14:17:45 +01:00
|
|
|
|
|
|
|
# Update
|
2019-12-27 16:11:54 +01:00
|
|
|
RUN apk --update add rsync 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"]
|