Browse Source

add docker commands to Makefile

pull/1780/head
Anton Kaliaev 7 years ago
parent
commit
76bd68f881
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      Makefile

+ 7
- 1
Makefile View File

@ -89,4 +89,10 @@ metalinter_test: tools
#--enable=unparam \
#--enable=vet \
.PHONY: all build test fmt get_deps tools protoc install_protoc
build-docker:
docker build -t "tendermint/abci-dev" -f Dockerfile.develop .
run-docker:
docker run -it --rm -v "$PWD:/go/src/github.com/tendermint/abci" -w "/go/src/github.com/tendermint/abci" "tendermint/abci-dev" /bin/bash
.PHONY: all build test fmt get_deps tools protoc install_protoc build-docker run-docker

Loading…
Cancel
Save