pipeline { agent { dockerfile { args '-v /mlruns:/mlruns' } } stages { stage('Stage') { steps { sh 'cd lab8' sh "python predictMlflow.py" } } } }