ium_434695/Jenkinsfile-from-registry
2021-05-24 01:20:22 +02:00

19 lines
337 B
Plaintext

pipeline {
agent {
dockerfile true
}
stage('predict')
{
steps
{
catchError {
sh 'ls -al'
sh 'python3 predict434788-from-registry.py'
}
}
}
}
}