BuyAndKnow/Jenkinsfile
Stanislaw-Golebiewski 63e7e9c2eb Now it should pass :33
2019-11-25 14:19:54 +01:00

16 lines
285 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Build') {
steps {
sh 'python api/main.py -i api/img/biedra.jpg'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
}
}