From 74328c909d377dbeb303c030bbbc7b04b7c46de3 Mon Sep 17 00:00:00 2001 From: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com> Date: Fri, 31 Mar 2023 14:48:55 +0200 Subject: [PATCH] fix docker-build command (#1737) --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index c20325163c..cf17f55cab 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,12 @@ SIMAPP = ./app HTTPS_GIT := https://github.com/evmos/ethermint.git PROJECT_NAME = $(shell git remote get-url origin | xargs basename -s .git) DOCKER := $(shell which docker) +NAMESPACE := tharsis +PROJECT := ethermint +DOCKER_IMAGE := $(NAMESPACE)/$(PROJECT) +COMMIT_HASH := $(shell git rev-parse --short=7 HEAD) +DOCKER_TAG := $(COMMIT_HASH) + # RocksDB is a native dependency, so we don't assume the library is installed. # Instead, it must be explicitly enabled and we warn when it is not. ENABLE_ROCKSDB ?= false