pipeline { agent { docker { image 'maciejczajka' } } stages { stage('Script') { steps { copyArtifacts projectName: 's444409-training/main', selector: lastSuccessful() sh 'ls -al' sh "python predict.py" } } } }