From a53c28b690f259ba81969a5122c3198c501800ea Mon Sep 17 00:00:00 2001 From: bom Date: Tue, 18 Jul 2023 12:20:44 +0200 Subject: [PATCH] Use execute_secure in dockerhub_login --- src/main/python/ddadevops/infrastructure/infrastructure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/python/ddadevops/infrastructure/infrastructure.py b/src/main/python/ddadevops/infrastructure/infrastructure.py index 4cacdec..f2064a2 100644 --- a/src/main/python/ddadevops/infrastructure/infrastructure.py +++ b/src/main/python/ddadevops/infrastructure/infrastructure.py @@ -63,7 +63,7 @@ class ImageApi: ) def dockerhub_login(self, username: str, password: str): - self.execution_api.execute_live( + self.execution_api.execute_secure( f"docker login --username {username} --password {password}" )