From 4a7259c3a56909c2811a99ed9000cefadaa2f1f1 Mon Sep 17 00:00:00 2001 From: Ethan Look-Potts Date: Mon, 23 Feb 2026 19:29:29 -0500 Subject: [PATCH] chore: remove _v8 from architecture specifiers for node distroless version --- MODULE.bazel | 4 ++-- ui/BUILD | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index 697ccbdca..a46056856 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -298,7 +298,7 @@ oci.pull( image = BASE_DISTROLESS_IMAGE_URL + "node:22-v4.0.2", platforms = [ "linux/amd64", - "linux/arm64/v8", + "linux/arm64", ], ) use_repo( @@ -311,7 +311,7 @@ use_repo( # "distroless_python3_10_dev_linux_arm64_v8", "node_22_distroless", "node_22_distroless_linux_amd64", - "node_22_distroless_linux_arm64_v8", + "node_22_distroless_linux_arm64", "ubuntu_22_04", "ubuntu_22_04_linux_amd64", "ubuntu_22_04_linux_arm64", diff --git a/ui/BUILD b/ui/BUILD index f20502ecf..9703b32c6 100644 --- a/ui/BUILD +++ b/ui/BUILD @@ -194,7 +194,7 @@ oci_push( oci_image( name = "web_ui_image_arm64", - base = "@node_22_distroless_linux_arm64_v8", + base = "@node_22_distroless_linux_arm64", tars = [ ":standalone_layers", ":react_overlay_tar",