good-old-jenkins/Dockerfile
Andreas Fahrecker 99dbf82b54
All checks were successful
andreas-personal/good-old-jenkins/pipeline/head This commit looks good
feat: update to use jdk21
2024-04-29 22:44:00 +02:00

17 lines
458 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 jenkins plugins
USER jenkins
RUN jenkins-plugin-cli --plugins "blueocean docker-workflow"