pipeline { agent { dockerfile { dir 'automation' reuseNode true } } stages { stage('Deployment') { steps { sh 'rsync -h' } } } }