File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,11 @@ def buildImages = { ->
25
25
imageNamePy2 = " ${ imageNameBase} :py2-${ gitCommit()} "
26
26
imageNamePy3 = " ${ imageNameBase} :py3-${ gitCommit()} "
27
27
imageDindSSH = " ${ imageNameBase} :sshdind-${ gitCommit()} "
28
-
29
- buildImage(imageDindSSH, " -f tests/Dockerfile-ssh-dind ." , " " )
30
- buildImage(imageNamePy2, " -f tests/Dockerfile --build-arg PYTHON_VERSION=2.7 ." , " py2.7" )
31
- buildImage(imageNamePy3, " -f tests/Dockerfile --build-arg PYTHON_VERSION=3.7 ." , " py3.7" )
28
+ withDockerRegistry(credentialsId :' dockerbuildbot-index.docker.io' ) {
29
+ buildImage(imageDindSSH, " -f tests/Dockerfile-ssh-dind ." , " " )
30
+ buildImage(imageNamePy2, " -f tests/Dockerfile --build-arg PYTHON_VERSION=2.7 ." , " py2.7" )
31
+ buildImage(imageNamePy3, " -f tests/Dockerfile --build-arg PYTHON_VERSION=3.7 ." , " py3.7" )
32
+ }
32
33
}
33
34
}
34
35
}
You can’t perform that action at this time.
0 commit comments