pipeline { agent { docker { image 'python:3.0.0' } } stages { stage('build') { steps { sh 'python --version' } } } }