This image is used to build python packages and new container images within the pipeline.
To execute your pipeline within this image, add this to your Jenkinsfile
:
pipeline {
agent {
label 'docker'
docker {
image 'evryfs/base-python-builder:3.6'
args '-v /var/run/docker.sock:/var/run/docker.sock'
}
}
}