mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-02-08 20:54:33 +00:00
* Linux AMD64 binary distribution The builds are reproducible, as long as our base Docker Hub image remains available. tl;dr: `make dist` * use UTC dates
18 lines
285 B
Makefile
18 lines
285 B
Makefile
SHELL := bash
|
|
|
|
IMAGE_TAG := dist_base_$(shell date --utc +"%Y%m%d%H%M%S")
|
|
IMAGE_NAME := statusteam/nimbus_beacon_node:$(IMAGE_TAG)
|
|
|
|
.PHONY: build push
|
|
|
|
build:
|
|
@ DOCKER_BUILDKIT=1 \
|
|
docker build \
|
|
-t $(IMAGE_NAME) \
|
|
--progress=plain \
|
|
.
|
|
|
|
push: build
|
|
docker push $(IMAGE_NAME)
|
|
|