BuyAndKnow/Jenkinsfile

16 lines
285 B
Plaintext
Raw Normal View History

2019-11-18 18:37:57 +01:00
pipeline {
2019-11-25 13:54:35 +01:00
agent { dockerfile true }
2019-11-25 13:51:22 +01:00
2019-11-18 18:37:57 +01:00
stages {
stage('Build') {
steps {
2019-11-25 14:19:54 +01:00
sh 'python api/main.py -i api/img/biedra.jpg'
2019-11-18 18:37:57 +01:00
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
}
}