mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-11-09 15:24:58 -05:00
bazel: always choose linux / amd64 distroless base image
This commit is contained in:
parent
537cdbcfad
commit
6c8dade285
4 changed files with 4 additions and 12 deletions
|
|
@ -57,10 +57,8 @@ pkg_tar(
|
||||||
|
|
||||||
oci_image(
|
oci_image(
|
||||||
name = "joinservice",
|
name = "joinservice",
|
||||||
architecture = "amd64",
|
base = "@distroless_static_linux_amd64",
|
||||||
base = "@distroless_static",
|
|
||||||
entrypoint = ["/joinservice"],
|
entrypoint = ["/joinservice"],
|
||||||
os = "linux",
|
|
||||||
tars = [
|
tars = [
|
||||||
":layer",
|
":layer",
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -46,10 +46,8 @@ pkg_tar(
|
||||||
|
|
||||||
oci_image(
|
oci_image(
|
||||||
name = "keyservice",
|
name = "keyservice",
|
||||||
architecture = "amd64",
|
base = "@distroless_static_linux_amd64",
|
||||||
base = "@distroless_static",
|
|
||||||
entrypoint = ["/keyservice"],
|
entrypoint = ["/keyservice"],
|
||||||
os = "linux",
|
|
||||||
tars = [
|
tars = [
|
||||||
":layer",
|
":layer",
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -58,10 +58,8 @@ pkg_tar(
|
||||||
|
|
||||||
oci_image(
|
oci_image(
|
||||||
name = "node_operator",
|
name = "node_operator",
|
||||||
architecture = "amd64",
|
base = "@distroless_static_linux_amd64",
|
||||||
base = "@distroless_static",
|
|
||||||
entrypoint = ["/node-operator"],
|
entrypoint = ["/node-operator"],
|
||||||
os = "linux",
|
|
||||||
tars = [
|
tars = [
|
||||||
":layer",
|
":layer",
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -43,10 +43,8 @@ pkg_tar(
|
||||||
|
|
||||||
oci_image(
|
oci_image(
|
||||||
name = "verificationservice",
|
name = "verificationservice",
|
||||||
architecture = "amd64",
|
base = "@distroless_static_linux_amd64",
|
||||||
base = "@distroless_static",
|
|
||||||
entrypoint = ["/verify"],
|
entrypoint = ["/verify"],
|
||||||
os = "linux",
|
|
||||||
tars = [
|
tars = [
|
||||||
":layer",
|
":layer",
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue