mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-24 14:22:16 +00:00
* Remove traces oaf `github.com/tendermint/abci` - removed abci dockerfile as it was still referencing `github.com/tendermint/abci` Signed-off-by: Marko Baricevic <marbar3778@yahoo.com> * nor change to install of abci * use abci-cli instead of tendermint node * remove traces of Dockerfile.develop also use latest Go in Dockerfile.testing * update docker readme * remove wrapping because it will look awful on docker hub
14 lines
347 B
Makefile
14 lines
347 B
Makefile
build:
|
|
@sh -c "'$(CURDIR)/build.sh'"
|
|
|
|
push:
|
|
@sh -c "'$(CURDIR)/push.sh'"
|
|
|
|
build_testing:
|
|
docker build --tag tendermint/testing -f ./Dockerfile.testing .
|
|
|
|
build_amazonlinux_buildimage:
|
|
docker build -t "tendermint/tendermint:build_c-amazonlinux" -f Dockerfile.build_c-amazonlinux .
|
|
|
|
.PHONY: build push build_testing build_amazonlinux_buildimage
|