/* Requires the Docker Pipeline plugin */ pipeline { stages { stage('build') { steps { sh 'python --version' } } } }