From 26b3af7a263daeab672d1e1c75855906b84780e4 Mon Sep 17 00:00:00 2001 From: Daniel Choi Date: Mon, 16 Nov 2020 01:13:51 -0800 Subject: [PATCH] fix erroring of docker-build (#598) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0e0e570c..c33bed08 100644 --- a/Makefile +++ b/Makefile @@ -154,9 +154,9 @@ clean: docker-build: docker build -t ${DOCKER_IMAGE}:${DOCKER_TAG} . docker tag ${DOCKER_IMAGE}:${DOCKER_TAG} ${DOCKER_IMAGE}:latest - docker tag ${DOCKER_IMAGE}:${DOCKER_TAG} ${DOCKER_IMAGE}:${COMMIT_HASH} + # docker tag ${DOCKER_IMAGE}:${DOCKER_TAG} ${DOCKER_IMAGE}:${COMMIT_HASH} # update old container - docker rm ethermint + docker rm ethermint || true # create a new container from the latest image docker create --name ethermint -t -i cosmos/ethermint:latest ethermint # move the binaries to the ./build directory