Update Bazel to 1.1.0 and replace bazelisk by a direct download
This pins the version and avoids the need to redownload the binary
each time the container is recreated.
The .bazelversion file was bazelisk-specific and is no longer needed.
Test Plan:
Rebuilt the container, ran `scripts:launch`.
Modifying the checksum caused to build to fail.
X-Origin-Diff: phab/D211
GitOrigin-RevId: ec9ec2b97c6555a676f6444ac3923fad34b2cd16
diff --git a/scripts/gazelle.sh b/scripts/gazelle.sh
index c47241e..4d4bde1 100755
--- a/scripts/gazelle.sh
+++ b/scripts/gazelle.sh
@@ -1,5 +1,5 @@
#!/bin/bash
# gazelle.sh regenerates BUILD.bazel files for Go source files.
-bazelisk run //:gazelle -- update
-bazelisk run //:gazelle -- update-repos -from_file=go.mod -to_macro=repositories.bzl%go_repositories
+bazel run //:gazelle -- update
+bazel run //:gazelle -- update-repos -from_file=go.mod -to_macro=repositories.bzl%go_repositories