Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/utils/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


def match_tag(tag: str) -> bool:
return bool(_TAG.match(tag))
return tag == '' or bool(_TAG.match(tag))


def tar(path, exclude=None, dockerfile=None, fileobj=None, gzip=False):
Expand Down