...
1load("@rules_apko//apko:defs.bzl", "apko_image")
2load("@rules_oci//oci:defs.bzl", "oci_image", "oci_load")
3load("//hack/build/rules/container:index.bzl", "container_push")
4
5apko_image(
6 name = "fim-patcher-base",
7 config = "apko.yaml",
8 contents = "@fim_patcher_lock//:contents",
9 tag = "audio_base:latest",
10 tags = ["requires-network"],
11)
12
13oci_image(
14 name = "fim-patcher",
15 base = ":fim-patcher-base",
16 tags = ["manual"],
17)
18
19oci_load(
20 name = "fim-patcher-tar",
21 image = ":fim-patcher",
22 repo_tags = ["fim-patcher:latest"],
23 tags = ["manual"],
24)
25
26container_push(
27 name = "fim-patcher-container-push",
28 image = ":fim-patcher",
29 image_name = "fim-patcher",
30 repository_file = "//hack/build/rules/container:workloads-repo",
31 tags = [
32 "manual",
33 "no-remote-cache",
34 ],
35)
View as plain text