From 31f228a9159fe5a974f560b34c02565eb6e239df Mon Sep 17 00:00:00 2001 From: Andreas Fahrecker Date: Wed, 5 Jun 2024 02:25:17 +0200 Subject: [PATCH] feat: :sparkles: Add git lfs --- Dockerfile | 4 ++++ alpine/Dockerfile | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/Dockerfile b/Dockerfile index e404439..803eaa4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,3 +14,7 @@ COPY --chown=jenkins:jenkins executors.groovy /usr/share/jenkins/ref/init.groovy # Install jenkins plugins USER jenkins RUN jenkins-plugin-cli --plugins "blueocean docker-workflow" + +#Install git lfs +RUN apt-get install -y git-lfs +RUN git lfs install --system \ No newline at end of file diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 1fde386..7949c14 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -12,3 +12,7 @@ COPY --chown=jenkins:jenkins executors.groovy /usr/share/jenkins/ref/init.groovy # Install jenkins plugins USER jenkins RUN jenkins-plugin-cli --plugins "blueocean docker-workflow" + +#Install git lfs +RUN apk add --no-cache git-lfs +RUN git lfs install --system \ No newline at end of file