You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
271 B

  1. build:
  2. @sh -c "'$(CURDIR)/build.sh'"
  3. push:
  4. @sh -c "'$(CURDIR)/push.sh'"
  5. build_develop:
  6. docker build -t "tendermint/tendermint:develop" -f Dockerfile.develop .
  7. push_develop:
  8. docker push "tendermint/tendermint:develop"
  9. .PHONY: build build_develop push push_develop