18 lines
326 B
Plaintext
18 lines
326 B
Plaintext
pipeline {
|
|
agent {
|
|
docker {
|
|
image 'ksero/ium:mlflow'
|
|
}
|
|
dockerfile {
|
|
args '-v /mlruns:/mlruns'
|
|
}
|
|
}
|
|
stages {
|
|
stage('Prediction') {
|
|
steps {
|
|
sh 'ls -la'
|
|
sh "python ./predictMlflow.py"
|
|
}
|
|
}
|
|
}
|
|
} |