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..' } } } }