mirror of
https://github.com/browser-use/browser-use
synced 2026-04-22 17:45:09 +02:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user