Update Dockerfile

This commit is contained in:
Steven Agyekum
2019-12-27 16:11:54 +01:00
committed by GitHub
parent 1bbe8382e5
commit 20b1f5b4b8
+2 -1
View File
@@ -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"]