Update Dockerfile

This commit is contained in:
JoshPiper 2020-01-02 12:43:08 +00:00 committed by GitHub
parent 4b1ab34958
commit 8d2928e3f8

View file

@ -1,8 +1,13 @@
FROM alpine:3.11
MAINTAINER Dr Internet <internet@limelightgaming.net>
RUN apk update
RUN apk add --no-cache rsync openssh-client ca-certificates
RUN update-ca-certificates
# Install RSync and Open SSH.
RUN apk update && 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 add-key.sh /bin/add-key.sh