Skip to content

Commit

Permalink
Fix build tag (#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
athackst authored Sep 3, 2023
1 parent 0a3236e commit c3a9df4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def tag(self, repository, prev_tag, new_tag):
"""Tag a built image."""
image = f"{repository}:{prev_tag}"
log.info(f"Taging {image} --> {repository}:{new_tag}")
os.system(f"docker tag {image} {new_tag}")
os.system(f"docker tag {image} {repository}:{new_tag}")

def push(self, repository, tag):
"""Push a built repository:tag to a registry.
Expand Down

0 comments on commit c3a9df4

Please sign in to comment.