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