pipeline { agent { dockerfile true } stages { stage('Stage 1') { steps { sh 'chmod u+x ./kagle.py' sh 'python3 kagle.py' } } } }