From 31631ac9c242e13521420530b2fd6105ef728123 Mon Sep 17 00:00:00 2001 From: Ryan Schanzenbacher Date: Wed, 10 Jun 2026 18:10:24 -0400 Subject: test 3 --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Jenkinsfile') diff --git a/Jenkinsfile b/Jenkinsfile index 3b197f4..10953db 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -52,7 +52,7 @@ pipeline { env.IMAGES_TO_BUILD.split(',').each { img -> def tag = "${REGISTRY}/${img}" sh """ - docker build \ + docker build --tls=false\ --label org.opencontainers.image.source=${env.GIT_URL} \ --label org.opencontainers.image.revision=${env.GIT_COMMIT} \ -t ${tag}:${shortSha} \ @@ -60,9 +60,9 @@ pipeline { """ if (env.BRANCH_NAME == 'main') { sh """ - docker tag ${tag}:${shortSha} ${tag}:latest - docker push ${tag}:${shortSha} - docker push ${tag}:latest + docker tag --tls=false ${tag}:${shortSha} ${tag}:latest + docker push --tls=false ${tag}:${shortSha} + docker push --tls=false ${tag}:latest """ } } -- cgit v1.3