17 lines
365 B
Docker
Raw Normal View History

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