[SEBA-497]v2 Fix image name
Change-Id: If0d4907fc00f089dc682a2398932b63af503bf6f
diff --git a/Makefile b/Makefile
index 22c1531..71ed1b8 100644
--- a/Makefile
+++ b/Makefile
@@ -18,13 +18,14 @@
# Variables
VERSION ?= $(shell cat ./VERSION)
SERVICE_NAME ?= $(notdir $(abspath .))
+SYNCHRONIZER_NAME ?= kubernetes-synchronizer
## Docker related
DOCKER_REGISTRY ?=
DOCKER_REPOSITORY ?=
DOCKER_BUILD_ARGS ?=
DOCKER_TAG ?= ${VERSION}
-DOCKER_IMAGENAME := ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}${SERVICE_NAME}:${DOCKER_TAG}
+DOCKER_IMAGENAME := ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}${SYNCHRONIZER_NAME}:${DOCKER_TAG}
## Docker labels. Only set ref and commit date if committed
DOCKER_LABEL_VCS_URL ?= $(shell git remote get-url $(shell git remote))