diff options
Diffstat (limited to 'roles/git/files/runner-mirror/Dockerfile')
-rw-r--r-- | roles/git/files/runner-mirror/Dockerfile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/roles/git/files/runner-mirror/Dockerfile b/roles/git/files/runner-mirror/Dockerfile new file mode 100644 index 0000000..112548a --- /dev/null +++ b/roles/git/files/runner-mirror/Dockerfile @@ -0,0 +1,15 @@ +FROM alpine:latest + +RUN apk add --update-cache --upgrade --no-cache --purge \ + git openssh-client tzdata \ + && rm -rf /var/cache/apk + +ENV TZ=Europe/Berlin +WORKDIR /tmp + +# Copy ssh config. +COPY config /root/.ssh/config + +COPY mirror.sh / +COPY periodic.sh / +ENTRYPOINT ["/periodic.sh"] |