pipeline { agent { dockerfile true } stages { stage('Test') { steps { echo "Build has worked!" } } } }