Fix docker container build
diff --git a/bazel/oci/install_bazel.sh b/bazel/oci/install_bazel.sh
index f5b0e47..ae6fc85 100755
--- a/bazel/oci/install_bazel.sh
+++ b/bazel/oci/install_bazel.sh
@@ -2,6 +2,10 @@
 
 set -o errexit -o nounset -o pipefail
 
+if [ "$TARGETARCH" = "amd64" ]; then
+  TARGETARCH="x86_64"
+fi
+
 curl \
     --fail \
     --location \