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

16 lines
395 B
Docker

FROM jenkins/jenkins:alpine
USER root
RUN addgroup --gid 281 docker
RUN addgroup jenkins docker
# Install tea
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"