From 9eadb5ac47be5bd4494eb20a1971c3af0e11412d Mon Sep 17 00:00:00 2001 From: Sai Kumar <17549398+gsk967@users.noreply.github.com> Date: Tue, 14 Dec 2021 14:56:09 +0530 Subject: [PATCH] fix: fix the `make localnet-start` (#10765) --- Makefile | 2 +- contrib/images/simd-env/Dockerfile | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f3a924d51f..480d1e6e42 100644 --- a/Makefile +++ b/Makefile @@ -486,7 +486,7 @@ localnet-build-dlv: localnet-build-nodes: $(DOCKER) run --rm -v $(CURDIR)/.testnets:/data cosmossdk/simd \ - testnet init-files --v 4 --starting-ip-address 192.168.10.2 --keyring-backend=test + testnet init-files --v 4 -o /data --starting-ip-address 192.168.10.2 --keyring-backend=test docker-compose up -d localnet-stop: diff --git a/contrib/images/simd-env/Dockerfile b/contrib/images/simd-env/Dockerfile index b4443cdc8a..6225d20969 100644 --- a/contrib/images/simd-env/Dockerfile +++ b/contrib/images/simd-env/Dockerfile @@ -3,6 +3,8 @@ RUN apk add build-base git linux-headers WORKDIR /work COPY go.mod go.sum /work/ COPY db/go.mod db/go.sum /work/db/ +COPY x/group/go.mod x/group/go.sum /work/x/group/ + RUN go mod download COPY ./ /work RUN LEDGER_ENABLED=false make clean build