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.

15 lines
490 B

  1. build:
  2. # TAG=0.8.0 TAG_NO_PATCH=0.8
  3. docker build -t "tendermint/tendermint" -t "tendermint/tendermint:$TAG" -t "tendermint/tendermint:$TAG_NO_PATCH" .
  4. push:
  5. # TAG=0.8.0 TAG_NO_PATCH=0.8
  6. docker push "tendermint/tendermint" "tendermint/tendermint:$TAG" "tendermint/tendermint:$TAG_NO_PATCH"
  7. build_develop:
  8. docker build -t "tendermint/tendermint:develop" -f Dockerfile.develop .
  9. push_develop:
  10. docker push "tendermint/tendermint:develop"
  11. .PHONY: build build_develop push push_develop