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

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