mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-13 20:40:08 -06:00
`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.
20 lines
612 B
Python
20 lines
612 B
Python
from __future__ import absolute_import
|
|
from __future__ import unicode_literals
|
|
|
|
from pre_commit.languages import helpers
|
|
from pre_commit.languages.docker import assert_docker_available
|
|
from pre_commit.languages.docker import docker_cmd
|
|
from pre_commit.xargs import xargs
|
|
|
|
|
|
ENVIRONMENT_DIR = None
|
|
get_default_version = helpers.basic_get_default_version
|
|
healthy = helpers.basic_healthy
|
|
install_environment = helpers.no_install
|
|
|
|
|
|
def run_hook(repo_cmd_runner, hook, file_args): # pragma: windows no cover
|
|
assert_docker_available()
|
|
cmd = docker_cmd() + helpers.to_cmd(hook)
|
|
return xargs(cmd, file_args)
|