pipeline { agent { dockerfile true } stages { stage('Build') { steps { sh 'echo building...' } } } }