mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-11 22:37:11 +00:00
14 lines
271 B
Makefile
14 lines
271 B
Makefile
build:
|
|
@sh -c "'$(CURDIR)/build.sh'"
|
|
|
|
push:
|
|
@sh -c "'$(CURDIR)/push.sh'"
|
|
|
|
build_develop:
|
|
docker build -t "tendermint/tendermint:develop" -f Dockerfile.develop .
|
|
|
|
push_develop:
|
|
docker push "tendermint/tendermint:develop"
|
|
|
|
.PHONY: build build_develop push push_develop
|