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