diff --git a/deploy/Jenkinsfile b/deploy/Jenkinsfile index b88df26..690c45e 100644 --- a/deploy/Jenkinsfile +++ b/deploy/Jenkinsfile @@ -79,11 +79,7 @@ pipeline { )]) { sh """ echo "$DOCKER_PASS" | docker login --username "$DOCKER_USER" --password-stdin ${env.REGISTRY_URL} - docker buildx build \\ - --platform linux/amd64 \\ - -t ${env.IMAGE_TAG} \\ - -f deploy/Dockerfile . \\ - --push + docker buildx build --platform linux/amd64 -t ${env.IMAGE_TAG} -f deploy/Dockerfile . --push docker logout ${env.REGISTRY_URL} """ }