gitlab-sync-action/Dockerfile

15 lines
243 B
Docker
Raw Normal View History

2022-09-17 06:05:18 +00:00
FROM alpine:3.10
2022-09-17 06:02:38 +00:00
RUN apk update && apk upgrade && \
apk add --no-cache git openssh git-lfs
RUN git lfs install
COPY mirror.sh /mirror.sh
2022-09-17 06:03:45 +00:00
COPY setup.sh /setup.sh
2022-09-17 06:02:38 +00:00
2022-09-17 06:15:45 +00:00
RUN chmod +x /mirror.sh
RUN chmod +x /setup.sh
2022-09-17 06:02:38 +00:00
ENTRYPOINT ["/mirror.sh"]