Add new docker_image language type.

`docker_image` is intended to be a lightweight hook type similar to system /
script which allows one to use an existing docker image which provides a
hook.
This commit is contained in:
Anthony Sottile 2017-09-02 19:49:23 -07:00
parent 491b90548f
commit 9c3bbecab8
10 changed files with 63 additions and 28 deletions

View file

@ -41,3 +41,7 @@ def basic_get_default_version():
def basic_healthy(repo_cmd_runner, language_version):
return True
def no_install(repo_cmd_runner, version, additional_dependencies):
raise AssertionError('This type is not installable')