pipeline {
    agent {
        docker {
            image 's430705/ium:4'
            args '-v /tmp/mlruns:/tmp/mlruns -v /mlruns:/mlruns '
        }
    }

    stages {
    stage('Predict from MLFlow registry') {
        steps {
            sh "cd /tmp"
            sh "ls -al"
            sh "python3 lab_09_predict_coop.py"

        }
    }
}}