pipeline { agent { docker { image 'docker' } } stages { stage('Build') { agent { docker { image 'docker:latest' } } steps { sh 'env' } } } }