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