pipeline { agent { docker { image 'maciejczajka/ium:v1' } } stages { stage('Test') { steps { sh './download.sh' sh 'python3 ./Zajecia_2/main.py' } } } }