pipeline { agent { docker { image 'ubuntu:latest' } } stages { stage('Test') { steps { sh 'python3 ./Zajecia_2/main.py' } } } }