We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9264b7d + 17d7afb commit 69a5fceCopy full SHA for 69a5fce
repo2docker/utils.py
@@ -209,7 +209,7 @@ def is_valid_docker_image_name(image_name):
209
210
(?::([\w][\w.-]{0,127}))? # optional capture <tag-pattern>=':<tag>'
211
# optionally capture <digest-pattern>='@<digest>'
212
- (?:@[A-Za-z][A-Za-z0-9]*(?:[-_+.][A-Za-z][A-Za-z0-9]*)*[:][[:xdigit:]]{32,})?
+ (?:@[A-Za-z][A-Za-z0-9]*(?:[-_+.][A-Za-z][A-Za-z0-9]*)*[:][A-Fa-f0-9]{32,})?
213
$
214
""", re.VERBOSE)
215
0 commit comments