pipeline { agent { dockerfile true } stages { stage('Launch Docker') { steps { sh 'ls -la' } } } }