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