2020-01-02 13:03:53 +01:00
|
|
|
FROM alpine:3.11
|
|
|
|
MAINTAINER Dr Internet <internet@limelightgaming.net>
|
|
|
|
|
2020-01-02 13:43:08 +01:00
|
|
|
# Install RSync and Open SSH.
|
2020-01-02 13:58:28 +01:00
|
|
|
RUN apk update && apk add --no-cache rsync openssh-client #ca-certificates
|
2020-01-02 13:43:08 +01:00
|
|
|
# RUN update-ca-certificates
|
2020-01-02 13:03:53 +01:00
|
|
|
RUN rm -rf /var/cache/apk/*
|
2020-01-02 13:43:08 +01:00
|
|
|
|
|
|
|
# Prepare for SSH keys.
|
2020-01-02 13:23:40 +01:00
|
|
|
RUN mkdir ~/.ssh
|
2020-01-02 13:43:08 +01:00
|
|
|
|
|
|
|
# Copy in our executables.
|
2020-01-02 15:26:07 +01:00
|
|
|
COPY agent-start.sh /bin/agent-start
|
|
|
|
COPY agent-add.sh /bin/agent-add
|
2020-01-02 15:32:36 +01:00
|
|
|
RUN chmod +x /bin/agent-start /bin/agent-add
|