From adcbf2f3a7dfa1286958105ab6f36ad7a7b45a4b Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Fri, 8 Jan 2021 17:59:54 +0100 Subject: [PATCH] Pin prototools to a fixed version in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4b89bc82..8ecb8d5a 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ LEDGER_ENABLED ?= true SDK_PACK := $(shell go list -m github.com/cosmos/cosmos-sdk | sed 's/ /\@/g') # for dockerized protobuf tools -PROTO_CONTAINER := cosmwasm/prototools-docker:latest +PROTO_CONTAINER := cosmwasm/prototools-docker:v0.1.0 DOCKER_BUF := docker run --rm -v $(shell pwd)/buf.yaml:/workspace/buf.yaml -v $(shell go list -f "{{ .Dir }}" -m github.com/cosmos/cosmos-sdk):/workspace/cosmos_sdk_dir -v $(shell pwd):/workspace/wasmd --workdir /workspace $(PROTO_CONTAINER) HTTPS_GIT := https://github.com/CosmWasm/wasmd.git