You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Rules/Dockerfile

10 lines
174 B
Docker

FROM alpine:3.10
RUN apk update && apk upgrade && \
apk add --no-cache git openssh
COPY mirror.sh /mirror.sh
COPY setup-ssh.sh /setup-ssh.sh
ENTRYPOINT ["/mirror.sh"]