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