Revision f2351dc758e5c8cf6bc6c5c32931daa8ae6e49a9 authored by Ethan Buchman on 20 February 2019, 15:05:57 UTC, committed by Ethan Buchman on 20 February 2019, 15:05:57 UTC
1 parent 9d4f59b
Raw File
Makefile
build:
	@sh -c "'$(CURDIR)/build.sh'"

push:
	@sh -c "'$(CURDIR)/push.sh'"

build_develop:
	docker build -t "tendermint/tendermint:develop" -f Dockerfile.develop .

build_testing:
	docker build --tag tendermint/testing -f ./Dockerfile.testing .

push_develop:
	docker push "tendermint/tendermint:develop"

.PHONY: build build_develop push push_develop
back to top