From 51dbeff043f08f291e5f296a5b0d4d3a3fb02f49 Mon Sep 17 00:00:00 2001 From: Shobhit Sahani <109831134+shobhitsahani@users.noreply.github.com> Date: Tue, 3 Feb 2026 10:31:29 +0000 Subject: [PATCH] fix: correct docker build context path in build-base-images.sh Build context was set to ../../.. but the script cd's into docker/ on line 31, so only .. is needed to reach the repo root. This caused the build to fail when running from the repo root. Fixes #4011 fix: add missing newline at end of file fix: remove accidental heredoc wrapper from build script --- docker/build-base-images.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/build-base-images.sh b/docker/build-base-images.sh index 1d9f76045..a016a92b7 100755 --- a/docker/build-base-images.sh +++ b/docker/build-base-images.sh @@ -24,7 +24,7 @@ build_image() { [ "$PUSH" = "true" ] && build_cmd="$build_cmd --push" || build_cmd="$build_cmd" fi - $build_cmd $tag_args $build_args -f $dockerfile ../../.. + $build_cmd $tag_args $build_args -f $dockerfile .. } # Main