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
This commit is contained in:
Preston Van Loon
2020-03-25 17:36:28 -07:00
committed by GitHub
parent e077d3ddc9
commit 3792bf67b6
6 changed files with 123 additions and 4 deletions

9
tools/build_settings.bzl Normal file
View File

@@ -0,0 +1,9 @@
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),
)