add jenkin user to dockerfile on build 55/2155/1
authorMike Marchetti <mmarchetti@sandvine.com>
Sat, 9 Sep 2017 18:42:55 +0000 (14:42 -0400)
committerMike Marchetti <mmarchetti@sandvine.com>
Sat, 9 Sep 2017 18:53:02 +0000 (14:53 -0400)
Change-Id: I47fc730d27ff852d94b024be4e11adf3817aa011
Signed-off-by: Mike Marchetti <mmarchetti@sandvine.com>
jenkins/ci-pipelines/ci_stage_2.groovy

index 45cbc7d..7fca49d 100644 (file)
@@ -45,16 +45,14 @@ def ci_pipeline(mdg,url_prefix,project,branch,refspec,revision,build_system) {
     container_name = "${project}-${branch}".toLowerCase()
 
     stage('Docker-Build') {
+        sh '''
+           echo RUN groupadd -o -g $(id -g) -r jenkins >> Dockerfile
+           echo RUN useradd -o -u $(id -u) --create-home -r -g  jenkins jenkins >> Dockerfile
+           '''
         sh "docker build -t ${container_name} ."
     }
 
     withDockerContainer("${container_name}") {
-        stage('Docker-Setup') {
-            sh '''
-               groupadd -o -g $(id -g) -r jenkins
-               useradd -o -u $(id -u) --create-home -r -g  jenkins jenkins
-               '''
-        }
         stage('Test') {
             sh 'devops-stages/stage-test.sh'
         }