2022-05-15 19:20:14 +02:00
|
|
|
pipeline {
|
2022-05-16 00:19:29 +02:00
|
|
|
agent {
|
2022-05-16 11:13:39 +02:00
|
|
|
|
|
|
|
dockerfile {
|
|
|
|
args '-v /mlruns:/mlruns'
|
2022-05-15 19:20:14 +02:00
|
|
|
}
|
2022-05-16 00:19:29 +02:00
|
|
|
}
|
2022-05-15 19:20:14 +02:00
|
|
|
stages {
|
|
|
|
stage('Prediction') {
|
|
|
|
steps {
|
|
|
|
sh 'ls -la'
|
|
|
|
sh "python ./predictMlflow.py"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|