gitlab-sync-action/Dockerfile

15 lines
243 B
Docker

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