Andreas Fahrecker 31f228a915
Some checks failed
andreas-personal/good-old-jenkins/pipeline/head There was a failure building this commit
feat: Add git lfs
2024-06-05 02:25:17 +02:00

18 lines
424 B
Docker

FROM jenkins/jenkins:alpine-jdk21
USER root
RUN addgroup --gid 281 docker
RUN addgroup jenkins docker
# Install tea
RUN apk add --no-cache tea
COPY --chown=jenkins:jenkins executors.groovy /usr/share/jenkins/ref/init.groovy.d/executors.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