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