From 20b1f5b4b8dc74188d1220f12ee8fff962e8f439 Mon Sep 17 00:00:00 2001 From: Steven Agyekum Date: Fri, 27 Dec 2019 16:11:54 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index caa4435..529412d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,10 @@ FROM alpine:latest # Update -RUN apk --update add rsync +RUN apk --update add rsync openssh-client # Copy entrypoint ADD entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh + ENTRYPOINT ["/entrypoint.sh"]