pipeline { agent { docker { image 'maciejczajka' } } parameters { string( defaultValue: 'input_example.json', description: 'Input file name', name: 'INPUT', trim: false ) } stages { stage('Script') { steps { copyArtifacts projectName: 's444356-training/main', selector: lastSuccessful() sh 'python3 ./predict.py $INPUT' } } } }