BuyAndKnow/Jenkinsfile
Stanislaw-Golebiewski 28673e918c change Jenkinsfile
2019-11-25 13:59:01 +01:00

17 lines
302 B
Groovy

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