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