mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-07 06:34:01 -05:00
* Add alpine based images for validator and beacon chain * Use an alpine image with glibc * manual tags on transitional targets * poke buildkite * poke buildkite
10 lines
224 B
Python
10 lines
224 B
Python
BaseImageProvider = provider(fields = ["type"])
|
|
|
|
def _impl(ctx):
|
|
return BaseImageProvider(type = ctx.build_setting_value)
|
|
|
|
base_image = rule(
|
|
implementation = _impl,
|
|
build_setting = config.string(flag = True),
|
|
)
|