pipeline { agent { dockerfile true } stages { stage('CopyArtifacts') { steps { copyArtifacts filter: 'wer.txt, srr.txt', fingerprintArtifacts: true, projectName: 's407599-metrics' } } stage('Shell script') { steps { sh label: '', script: './script.sh' } } stage('ArchiveArtifacts') { steps { archiveArtifacts 'plot.png' } } } }