Explorar el Código

add Jenkinsfile

Benjamin Kornblum hace 8 meses
padre
commit
6d26db4e44
Se han modificado 1 ficheros con 0 adiciones y 2 borrados
  1. 0 2
      Jenkinsfile

+ 0 - 2
Jenkinsfile

@@ -4,12 +4,10 @@ node {
     stage('Initialize'){
         def dockerHome = tool 'docker'
         env.PATH = "${dockerHome}/bin:${env.PATH}"
-       
     }
 
     stage('Clone repository') {
         /* Let's make sure we have the repository cloned to our workspace */
-        sh 'usermod -aG docker jenkins'
         checkout scm
     }