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