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.

16 lines
352 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. build_testing:
  8. docker build --tag tendermint/testing -f ./Dockerfile.testing .
  9. push_develop:
  10. docker push "tendermint/tendermint:develop"
  11. .PHONY: build build_develop push push_develop