From 7235b7b0ae131d83a256867ad2d499a350572b98 Mon Sep 17 00:00:00 2001 From: Joseph Manley Date: Fri, 20 Dec 2019 12:01:12 -0500 Subject: [PATCH] Fix build --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4b8b57a..7d5c081 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -36,7 +36,7 @@ pipeline { echo "Building ${env.SERVICE} docker image" // Docker build flags are set via the getDockerBuildFlags() shared library. - sh "docker build ${getDockerBuildFlags()} -t ${env.DOCKER_REGISTRY}/${env.SERVICE}:${env.VERSION} ." + sh "docker build ${getDockerBuildFlags()} -t rbnops/auto-semver:${env.VERSION} ." sh "python setup.py sdist"