From e76189e46f064c88531b2d8fd945f27ec2130c68 Mon Sep 17 00:00:00 2001 From: Adil Akhmetov <48881444+weeebdev@users.noreply.github.com> Date: Mon, 25 Apr 2022 23:01:45 +0600 Subject: [PATCH 1/2] feat: add git lfs need to avoid failing job when mirroring repos using lfs --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 63435dd..77b6d40 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,8 @@ FROM alpine:3.10 RUN apk update && apk upgrade && \ apk add --no-cache git openssh +RUN git lfs install + COPY mirror.sh /mirror.sh COPY setup-ssh.sh /setup-ssh.sh From a58d9ec8df17d845bd3e1c98c39285c825db4de8 Mon Sep 17 00:00:00 2001 From: Adil Akhmetov <48881444+weeebdev@users.noreply.github.com> Date: Mon, 25 Apr 2022 23:07:46 +0600 Subject: [PATCH 2/2] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 77b6d40..622cca1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3.10 RUN apk update && apk upgrade && \ - apk add --no-cache git openssh + apk add --no-cache git openssh git-lfs RUN git lfs install