github.com_burnett01_rsync-.../Dockerfile
2021-08-02 19:14:10 +02:00

16 lines
363 B
Docker

FROM alpine:3.11
MAINTAINER Dr Internet <internet@limelightgaming.net>
# Install RSync and Open SSH.
RUN apk update && apk add --no-cache rsync openssh-client
RUN rm -rf /var/cache/apk/*
# Prepare SSH dir.
RUN mkdir ~/.ssh
# Copy in our executables.
COPY agent-* hosts-* /bin/
RUN chmod +x /bin/agent-* /bin/hosts-*
# Prepare for known hosts.
RUN hosts-clear