pipeline { agent { docker { image 's478841-image:latest' args '-v /mlruns:/mlruns' } } stages { stage('Predict using artifacts') { steps { sh 'python3 scripts/predict_s444356_registry.py' } } } }