Skip to content

Instantly share code, notes, and snippets.

@goldmann
Forked from rwngwn/example.py
Last active October 18, 2016 09:20
Show Gist options
  • Save goldmann/c995d8d9f90167533feeb5f0810f70fe to your computer and use it in GitHub Desktop.
Save goldmann/c995d8d9f90167533feeb5f0810f70fe to your computer and use it in GitHub Desktop.
if base_image == "scratch":
return base_image
if ':' in base_image:
return base_image
return "%s:%s" % (base_image, version)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment