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