Update Dockerfile

This commit is contained in:
Steven Agyekum 2019-12-27 16:11:54 +01:00 committed by GitHub
parent 1bbe8382e5
commit 20b1f5b4b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

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"]