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