This repository has been archived on 2025-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
|
FROM jenkins/ssh-agent:latest
|
|
COPY --from=docker:dind /usr/local/bin/docker /usr/local/bin/
|
|
ARG DOCKER_GROUP
|
|
RUN groupadd docker -g $DOCKER_GROUP
|
|
RUN usermod -aG docker jenkins
|