From 4985b18d2512e8c9dad391239e05f801a8aee09d Mon Sep 17 00:00:00 2001 From: CaptainB Date: Tue, 11 Jun 2024 11:08:44 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E5=8F=96=E6=B6=88dockerhub=20push?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9d75970..b1cb3cd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,7 +32,6 @@ pipeline { sh '''#!/bin/bash -xe docker --config /home/metersphere/.docker buildx build --no-cache --build-arg MS_VERSION=\${TAG_NAME:-\$BRANCH_NAME}-\${GIT_COMMIT:0:8} --build-arg IMG_TAG=\${TAG_NAME:-\$BRANCH_NAME} \ -t ${IMAGE_PREFIX}/metersphere-ce-allinone:\${TAG_NAME:-\$BRANCH_NAME} \ - -t metersphere/metersphere-ce-allinone:\${TAG_NAME:-\$BRANCH_NAME} \ -f Dockerfile.all --platform linux/amd64,linux/arm64 . --push ''' } @@ -51,7 +50,6 @@ pipeline { sh '''#!/bin/bash -xe docker --config /home/metersphere/.docker buildx build --no-cache --build-arg MS_VERSION=\${TAG_NAME:-\$BRANCH_NAME}-\${GIT_COMMIT:0:8} --build-arg IMG_TAG=\${TAG_NAME:-\$BRANCH_NAME} \ -t ${IMAGE_PREFIX}/metersphere-ce-allinone:latest \ - -t metersphere/metersphere-ce-allinone:latest \ -f Dockerfile.all --platform linux/amd64,linux/arm64 . --push ''' }