prysm-pulse/tools/build_settings.bzl
Preston Van Loon 3792bf67b6
Add alpine based docker images for validator and beacon chain (#5214)
* Add alpine based images for validator and beacon chain

* Use an alpine image with glibc

* manual tags on transitional targets

* poke buildkite

* poke buildkite
2020-03-25 19:36:28 -05:00

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),
)