github.com_burnett01_rsync-.../Dockerfile

13 lines
223 B
Docker
Raw Normal View History

2019-11-16 20:00:57 +01:00
FROM ubuntu:latest
2019-02-09 14:17:45 +01:00
# Update
RUN apt-get update
# Install packages
RUN apt-get -yq install rsync openssh-client
# Copy entrypoint
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]