pipeline { agent { docker { image 'maciejczajka' args '-v /mlruns:/mlruns' } } stages { stage('Script') { steps { sh 'python3 ./registry.py' } } } }