good-old-jenkins/Dockerfile
Andreas Fahrecker af4c8c0d68
Some checks failed
andreas-personal/good-old-jenkins/pipeline/head There was a failure building this commit
fix: 🐛 Fix git-lfs install
2024-06-05 02:36:56 +02:00

21 lines
536 B
Docker

FROM jenkins/jenkins:latest-jdk21
USER root
RUN groupadd -g 281 docker
RUN usermod -aG docker jenkins
# Install tea
RUN apt-get update && apt-get install -y git make golang
RUN git clone https://gitea.com/gitea/tea.git
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"