good-old-jenkins/Dockerfile
Andreas Fahrecker 552ed8a7a5
All checks were successful
andreas-personal/good-old-jenkins/pipeline/head This commit looks good
Initial Commit
2024-03-14 21:31:22 +01:00

12 lines
299 B
Docker

FROM jenkins/jenkins:latest
USER root
RUN groupadd -g 281 docker
RUN usermod -aG docker jenkins
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"