pipeline { agent { dockerfile { filename 'Dockerfile_3' } } stages { stage('Archive Output') { steps { archiveArtifacts 'my_runs/**/*.*' } } } }