pipeline { agent { dockerfile true } stages { stage('Generate plot') { steps { sh label: '', script: 'python plot.py' } } } }