From 54399560d848a4d55d8dd83e090e702dc5e6993a Mon Sep 17 00:00:00 2001 From: Steffen Scheib Date: Sat, 24 Aug 2024 13:32:05 +0200 Subject: [PATCH] fix: Adding missing EE option skip_pip_install Adding the missing option option.skip_pip_install, see https://ansible.readthedocs.io/projects/builder/en/latest/definition/#options Signed-off-by: Steffen Scheib --- src/ansiblelint/schemas/execution-environment.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ansiblelint/schemas/execution-environment.json b/src/ansiblelint/schemas/execution-environment.json index 7d44ab38c5..3ac1230176 100644 --- a/src/ansiblelint/schemas/execution-environment.json +++ b/src/ansiblelint/schemas/execution-environment.json @@ -278,6 +278,10 @@ "description": "Disables the check for Ansible/Runner in final image", "type": "boolean" }, + "skip_pip_install": { + "description": "Disables the installation of pip in the base image", + "type": "boolean" + }, "user": { "description": "Sets the username or UID", "type": "string"