diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index b1c2c77..50d8e67 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -1,10 +1,15 @@ pipeline { - agent { dockerfile true } - stages { - stage('Deployment') { - steps { - sh 'rsync -h' - } - } + agent { + dockerfile { + dir 'automation' + reuseNode true } + } + stages { + stage('Deployment') { + steps { + sh 'rsync -h' + } + } + } }