17 lines
309 B
Plaintext
17 lines
309 B
Plaintext
pipeline {
|
|
agent {
|
|
docker {
|
|
image 's478841-image:latest'
|
|
args '-v /mlruns:/mlruns'
|
|
}
|
|
}
|
|
|
|
stages {
|
|
stage('Predict using artifacts') {
|
|
steps {
|
|
sh 'python3 scripts/predict_s444356_registry.py'
|
|
}
|
|
}
|
|
}
|
|
}
|