burnett01-rsync-deployments/Dockerfile

13 lines
223 B
Docker
Raw Normal View History

2019-11-17 03:00:57 +08:00
FROM ubuntu:latest
2019-02-09 21:17:45 +08: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"]