From 8f59989d6ca4c73f0001d56650c68ad95da839ed Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 12 Sep 2023 10:30:34 +0200 Subject: [PATCH] update jenkinsfile --- automation/Jenkinsfile | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) 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' + } + } + } }