pipeline { agent { dockerfile true } stages{ stage('Copy model') { steps { copyArtifacts(projectName: 's452662-training', selector: lastSuccessful()) } } stage('Archive metrics') { steps{ archiveArtifacts 'metrics.txt' } } } }