16 lines
339 B
Plaintext
16 lines
339 B
Plaintext
pipeline {
|
|
agent {
|
|
docker {
|
|
image 's444507_create_dataset_image:latest'
|
|
args '-v /mlruns:/mlruns'
|
|
}
|
|
}
|
|
|
|
stages {
|
|
stage('Predict values using model from artifact') {
|
|
steps {
|
|
sh "python3 lab08_predict_from_registry.py"
|
|
}
|
|
}
|
|
}
|
|
} |