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