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
This commit is contained in:
Shobhit Sahani
2026-02-03 10:31:29 +00:00
parent 4d5794ad7d
commit 51dbeff043

View File

@@ -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