This repository has been archived on 2025-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
Files
jenkins-with-docker/alpine/Dockerfile

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