2fa5f88c56
Some checks failed
s444354-training/pipeline/head There was a failure building this commit
13 lines
241 B
Plaintext
13 lines
241 B
Plaintext
pipeline {
|
|
docker {
|
|
image 'ksero/ium:pytorch'
|
|
}
|
|
stages {
|
|
stage('Prediction') {
|
|
steps {
|
|
sh 'ls -la'
|
|
sh "python ./predictMlflow.py"
|
|
}
|
|
}
|
|
}
|
|
} |