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.

19 lines
480 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. build_amazonlinux_buildimage:
  12. docker build -t "tendermint/tendermint:build_c-amazonlinux" -f Dockerfile.build_c-amazonlinux .
  13. .PHONY: build build_develop push push_develop