mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 23:18:15 -05:00
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:
9
tools/build_settings.bzl
Normal file
9
tools/build_settings.bzl
Normal 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),
|
||||
)
|
||||
Reference in New Issue
Block a user