Andreas Fahrecker 225469414f
Some checks failed
andreas-personal/jenkins-with-docker/pipeline/head There was a failure building this commit
Added Jenkins Build Steps fro alpine Build
2024-03-12 16:43:22 +01:00

13 lines
319 B
Docker

FROM jenkins/jenkins:alpine
USER root
RUN groupadd -g 281 docker
RUN usermod -aG docker jenkins
RUN apk add --no-cache docker docker-compose
COPY --chown=jenkins:jenkins executors.groovy /usr/share/jenkins/ref/init.groovy.d/executors.groovy
USER jenkins
RUN jenkins-plugin-cli --plugins "blueocean docker-workflow"