good-old-jenkins/Dockerfile
Andreas Fahrecker c7bd2d6cc6
Some checks failed
andreas-personal/good-old-jenkins/pipeline/head There was a failure building this commit
Added tea-cli
2024-04-16 00:18:27 +02:00

15 lines
341 B
Docker

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