17 lines
328 B
Plaintext
17 lines
328 B
Plaintext
pipeline {
|
|
agent {
|
|
docker {
|
|
image 's444409-create-dataset'
|
|
args '-v /mlruns:/mlruns'
|
|
}
|
|
}
|
|
|
|
stages {
|
|
stage('Predict values using model from artifact') {
|
|
steps {
|
|
sh "python predict_s444356-from-registry.py"
|
|
}
|
|
}
|
|
}
|
|
}
|