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 ++++---- test-1/Dockerfile | 2 -- 2 files changed, 4 insertions(+), 6 deletions(-) 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 """ } } diff --git a/test-1/Dockerfile b/test-1/Dockerfile index f32e3e8..b4e1dd4 100644 --- a/test-1/Dockerfile +++ b/test-1/Dockerfile @@ -2,6 +2,4 @@ FROM ubuntu:latest RUN apt update && apt install -y git -RUN git --version - ENTRYPOINT ['git'] -- cgit v1.3