Skip to content

Instantly share code, notes, and snippets.

@rwngwn
Created October 18, 2016 09:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rwngwn/05be5b00533569505ecba0862283d742 to your computer and use it in GitHub Desktop.
Save rwngwn/05be5b00533569505ecba0862283d742 to your computer and use it in GitHub Desktop.
if base_image == "scratch":
return base_image
elif ':' in base_image:
return base_image
else:
return "%s:%s" % (base_image, version)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment