From 048e2edc85a89cb37b5659d9aa55e3c6d405557b Mon Sep 17 00:00:00 2001 From: Menachem Weinfeld <90556466+mmhw@users.noreply.github.com> Date: Tue, 25 Feb 2025 12:43:39 +0200 Subject: [PATCH] Update demisto_sdk/commands/common/docker_helper.py Co-authored-by: Koby Meir --- demisto_sdk/commands/common/docker_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demisto_sdk/commands/common/docker_helper.py b/demisto_sdk/commands/common/docker_helper.py index d501d711dd..7c875181d6 100644 --- a/demisto_sdk/commands/common/docker_helper.py +++ b/demisto_sdk/commands/common/docker_helper.py @@ -49,7 +49,7 @@ ) TEST_REQUIREMENTS_DIR = Path(__file__).parent.parent / "lint" / "resources" -DOCKER_CONTAINER_TIMEOUT = 300 +DOCKER_CONTAINER_TIMEOUT = int(os.getenv("DOCKER_CONTAINER_TIMEOUT")) or 300 class DockerException(Exception):