From 0e109005281d714542012055e913fd55c3e51266 Mon Sep 17 00:00:00 2001 From: Nick Brown <70656471+ihs-nick@users.noreply.github.com> Date: Sat, 24 Apr 2021 17:27:18 -0600 Subject: [PATCH] [Builder] Fix function image tagging syntax (#860) --- mlrun/runtimes/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlrun/runtimes/utils.py b/mlrun/runtimes/utils.py index 6091b36c757..618318dd317 100644 --- a/mlrun/runtimes/utils.py +++ b/mlrun/runtimes/utils.py @@ -270,7 +270,7 @@ def generate_function_image_name(function): _, repository = helpers.get_parsed_docker_registry() if not repository: repository = "mlrun" - return f".{repository}/func-{project}-{function.metadata.name}-{tag}" + return f".{repository}/func-{project}-{function.metadata.name}:{tag}" def set_named_item(obj, item):