Skip to content

Commit

Permalink
[Builder] Fix function image tagging syntax (#860)
Browse files Browse the repository at this point in the history
  • Loading branch information
ihs-nick committed Apr 24, 2021
1 parent 0890cd8 commit 0e10900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlrun/runtimes/utils.py
Expand Up @@ -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):
Expand Down

0 comments on commit 0e10900

Please sign in to comment.