From dbd9d053f0735d480cf426d2edc0b1ccf6a0bd1f Mon Sep 17 00:00:00 2001 From: Baitinq Date: Sun, 16 Jun 2024 22:19:36 +0200 Subject: misc: Update for working with new server --- src/rest-api/cmd/BUILD.bazel | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/rest-api') 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"], ) -- cgit 1.4.1