15 lines
269 B
Plaintext
15 lines
269 B
Plaintext
pipeline {
|
|
agent {
|
|
dockerfile {
|
|
args '-v /mlruns:/mlruns'
|
|
}
|
|
}
|
|
stages {
|
|
stage('Stage') {
|
|
steps {
|
|
sh 'ls -la'
|
|
sh "python lab8/predictMlflow.py"
|
|
}
|
|
}
|
|
}
|
|
} |