mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
3792bf67b6
* 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),
|
|
)
|