19 lines
336 B
Plaintext
19 lines
336 B
Plaintext
pipeline {
|
|
agent {
|
|
dockerfile true
|
|
}
|
|
|
|
stage('predict')
|
|
{
|
|
steps
|
|
{
|
|
catchError {
|
|
sh 'ls -al'
|
|
sh 'python3 predict434788-from-registry.py'
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|