fix: use system PATH for Docker binary instead of hardcoded path

This commit is contained in:
Greyson LaLonde
2025-10-05 21:36:05 -04:00
committed by GitHub
parent f0f94f2540
commit dac5d6d664

View File

@@ -702,7 +702,7 @@ class Agent(BaseAgent):
try:
subprocess.run(
["/usr/bin/docker", "info"],
["docker", "info"], # noqa: S607
check=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,