From af4c8c0d68609d994fd87b6a21d4cd13074038b8 Mon Sep 17 00:00:00 2001 From: Andreas Fahrecker Date: Wed, 5 Jun 2024 02:36:56 +0200 Subject: [PATCH] fix: :bug: Fix git-lfs install --- Dockerfile | 8 ++++---- alpine/Dockerfile | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 803eaa4..c91d386 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,10 +11,10 @@ RUN cd tea && make && make install COPY --chown=jenkins:jenkins executors.groovy /usr/share/jenkins/ref/init.groovy.d/executors.groovy +#Install git lfs +RUN apt-get install -y git-lfs +RUN git lfs install --system + # 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 7949c14..dad002c 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -9,10 +9,10 @@ RUN apk add --no-cache tea COPY --chown=jenkins:jenkins executors.groovy /usr/share/jenkins/ref/init.groovy.d/executors.groovy +#Install git lfs +RUN apk add --no-cache git-lfs +RUN git lfs install --system + # 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