소스 검색

.svn move to prevent it apperance in docker image

Vadim Surkov 6 년 전
부모
커밋
155babb25d
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      Jenkinsfile

+ 2 - 0
Jenkinsfile

@@ -21,7 +21,9 @@ pipeline {
     stage("Build docker image") {
       steps {
         bat 'svn.exe checkout svn://192.168.21.250/programs/trunk/Services/Analis/Win64 Infoclinica --username public --password "sds#7753435"'
+		powershell 'move-Item -Path .\Infoclinica\.svn -Destination .\svn'
         bat "docker build --no-cache -t analis-service:${BUILD_NUMBER} ."
+		powershell 'move-Item -Path .\svn -Destination .\Infoclinica\.svn'
       }
     }
   }