gitlab-sync-action/Dockerfile

12 lines
198 B
Docker

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