From 13100bcbf1a9ff9c72e8bc3232564a9b15abc190 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 1 Feb 2026 04:28:37 +0000 Subject: [PATCH] Fix Docker build to use absolute Dockerfile path Co-authored-by: bandrel <3598052+bandrel@users.noreply.github.com> --- tests/test_docker_script_install.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_docker_script_install.py b/tests/test_docker_script_install.py index 6b3516c..9c482ab 100644 --- a/tests/test_docker_script_install.py +++ b/tests/test_docker_script_install.py @@ -18,10 +18,11 @@ def docker_image(): _require_docker() repo_root = Path(__file__).resolve().parents[1] image_tag = "hate-crack-e2e" + dockerfile_path = repo_root / "Dockerfile.test" try: build = subprocess.run( - ["docker", "build", "-f", "Dockerfile.test", "-t", image_tag, str(repo_root)], + ["docker", "build", "-f", str(dockerfile_path), "-t", image_tag, str(repo_root)], capture_output=True, text=True, timeout=600,