From 2276b3fd3ac236a016df996d18d4217e93d03871 Mon Sep 17 00:00:00 2001 From: Ryan Schanzenbacher Date: Wed, 10 Jun 2026 18:12:53 -0400 Subject: test 4 --- Jenkinsfile | 8 ++++---- test-1/Dockerfile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 10953db..5d04815 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -52,7 +52,7 @@ pipeline { env.IMAGES_TO_BUILD.split(',').each { img -> def tag = "${REGISTRY}/${img}" sh """ - docker build --tls=false\ + docker --tls=false build \ --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 --tls=false ${tag}:${shortSha} ${tag}:latest - docker push --tls=false ${tag}:${shortSha} - docker push --tls=false ${tag}:latest + docker --tls=false tag ${tag}:${shortSha} ${tag}:latest + docker --tls=false push ${tag}:${shortSha} + docker --tls=false push ${tag}:latest """ } } diff --git a/test-1/Dockerfile b/test-1/Dockerfile index b4e1dd4..51138f4 100644 --- a/test-1/Dockerfile +++ b/test-1/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:latest -RUN apt update && apt install -y git +RUN apt update && apt install -y git curl ENTRYPOINT ['git'] -- cgit v1.3