burnett01-rsync-deployments/Dockerfile

18 lines
429 B
Docker
Raw Normal View History

2020-01-02 20:03:53 +08:00
FROM alpine:3.11
MAINTAINER Dr Internet <internet@limelightgaming.net>
2020-01-02 20:43:08 +08:00
# Install RSync and Open SSH.
RUN apk update && apk add --no-cache rsync openssh-client
2020-01-02 20:03:53 +08:00
RUN rm -rf /var/cache/apk/*
2020-01-02 20:43:08 +08:00
2020-01-03 00:30:18 +08:00
# Prepare SSH dir.
2020-01-02 20:23:40 +08:00
RUN mkdir ~/.ssh
2020-01-02 20:43:08 +08:00
# Copy in our executables.
COPY agent-start agent-stop agent-add agent-autostart /bin/
COPY hosts-clear hosts-add /bin/
RUN chmod +x /bin/agent-* /bin/hosts-*
2020-01-03 00:30:18 +08:00
# Prepare for known hosts.
2020-01-03 00:29:47 +08:00
RUN hosts-clear