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