mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
12 lines
253 B
Python
12 lines
253 B
Python
|
load("@rules_oci//oci:defs.bzl", "oci_image")
|
||
|
|
||
|
oci_image(
|
||
|
name = "vpn",
|
||
|
base = "@distroless_static_linux_amd64",
|
||
|
entrypoint = ["/bin/sh"],
|
||
|
tars = [
|
||
|
"@vpn_oci_image//:layer.tar",
|
||
|
],
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|