pipeline { agent { docker { image 'docker:dind' } } stages { stage('Build') { steps { sh 'docker build -t docs:latest .' } } } }