pipeline { agent { dockerfile true } stages { stage('predict') { steps { catchError { sh 'ls -al' sh 'python3 predict434788-from-registry.py' } } } } }