mirror of
https://github.com/Burnett01/rsync-deployments.git
synced 2024-11-23 16:03:46 +01:00
15 lines
413 B
Docker
15 lines
413 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 #ca-certificates
|
|
# RUN update-ca-certificates
|
|
RUN rm -rf /var/cache/apk/*
|
|
|
|
# Prepare for SSH keys.
|
|
RUN mkdir ~/.ssh
|
|
|
|
# Copy in our executables.
|
|
COPY start-agent.sh /bin/start-agent
|
|
COPY add-key.sh /bin/add-key
|
|
RUN chmod +x /bin/add-key /bin/start-agent
|