From be628fce3b3fd7d97bef8524e59c79264dedcf32 Mon Sep 17 00:00:00 2001 From: "M. J. Fromberger" Date: Fri, 19 Nov 2021 07:57:30 -0800 Subject: [PATCH] build: Update the builder image location. (#364) Point Makefile to ghcr.io instead of DockerHub. --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 040da6d14..27f474377 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,8 @@ -DOCKER_PROTO_BUILDER := docker run -v $(shell pwd):/workspace --workdir /workspace tendermintdev/docker-build-proto +# The Docker image containing the generator, formatter, and linter. +# This is generated by proto/Dockerfile. To update tools, make changes +# there and run the Build & Push Proto Builder Image workflow. +IMAGE := ghcr.io/tendermint/docker-build-proto:latest +DOCKER_PROTO_BUILDER := docker run -v $(shell pwd):/workspace --workdir /workspace $(IMAGE) HTTPS_GIT := https://github.com/tendermint/spec.git ###############################################################################