Skip to content
This repository was archived by the owner on Feb 6, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion bin/auth-api/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -156,5 +156,9 @@ docker_image(
flake_lock = "//:flake.lock",
build_deps = [
"//bin/auth-api:auth-api",
]
],
# TODO(fnichol): revisit post 2025-02-01
promote_multi_arches = [
"amd64",
],
)
8 changes: 6 additions & 2 deletions bin/module-index/BUCK
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
load(
"@prelude-si//:macros.bzl",
"docker_image",
"rust_binary",
"nix_omnibus_pkg",
"rust_binary",
)

rust_binary(
Expand All @@ -29,7 +29,11 @@ docker_image(
name = "image",
image_name = "module-index",
flake_lock = "//:flake.lock",
build_deps = ["//bin/module-index:module-index"]
build_deps = ["//bin/module-index:module-index"],
# TODO(fnichol): revisit post 2025-02-01
promote_multi_arches = [
"amd64",
],
)

nix_omnibus_pkg(
Expand Down
2 changes: 2 additions & 0 deletions prelude-si/macros/docker.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def docker_image(
visibility = ["PUBLIC"],
release_target = "release",
promote_target = "promote",
promote_multi_arches = [],
**kwargs):
_docker_image(
name = name,
Expand All @@ -36,5 +37,6 @@ def docker_image(
_docker_image_promote(
name = promote_target,
image_name = "{}/{}".format(organization, kwargs.get("image_name", name)),
multi_arches = promote_multi_arches,
visibility = visibility,
)