diff options
Diffstat (limited to 'src/rest-api/cmd/BUILD.bazel')
-rw-r--r-- | src/rest-api/cmd/BUILD.bazel | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/rest-api/cmd/BUILD.bazel b/src/rest-api/cmd/BUILD.bazel index 0d96a1f..82e0ea8 100644 --- a/src/rest-api/cmd/BUILD.bazel +++ b/src/rest-api/cmd/BUILD.bazel @@ -24,22 +24,22 @@ go_binary( ) go_cross_binary( - name = "cmd_arm64", - platform = "@io_bazel_rules_go//go/toolchain:linux_arm64", + name = "cmd_amd64", + platform = "@io_bazel_rules_go//go/toolchain:linux_amd64", target = ":cmd", visibility = ["//visibility:public"], ) pkg_tar( name = "tar", - srcs = [":cmd_arm64"], + srcs = [":cmd_amd64"], ) oci_image( name = "image", base = "@distroless_base", - entrypoint = ["/cmd_arm64"], - # architecture = "arm64", + entrypoint = ["/cmd_amd64"], + # architecture = "amd64", # os = "linux", tars = [":tar"], ) |