From faddf98391dfb71a3a072ddd7e9ff66bb8eff2e3 Mon Sep 17 00:00:00 2001 From: Conner Fromknecht Date: Mon, 1 Feb 2021 10:02:36 -0800 Subject: [PATCH] gen_protos_docker: make image build non-quiet This allows users to see progress whenever the docker image is [re]built, and (esp on non-linux hosts) track the size of the build context being uploaded. Currently no output is displayed, so it's hard to attribute the source of latency, e.g. network latency, building layers, a large work directory, etc. --- lnrpc/gen_protos_docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnrpc/gen_protos_docker.sh b/lnrpc/gen_protos_docker.sh index deebc4fb..ef6c6e08 100755 --- a/lnrpc/gen_protos_docker.sh +++ b/lnrpc/gen_protos_docker.sh @@ -9,7 +9,7 @@ PROTOC_GEN_VERSION=$(go list -f '{{.Version}}' -m github.com/golang/protobuf) GRPC_GATEWAY_VERSION=$(go list -f '{{.Version}}' -m github.com/grpc-ecosystem/grpc-gateway) echo "Building protobuf compiler docker image..." -docker build -q -t lnd-protobuf-builder \ +docker build -t lnd-protobuf-builder \ --build-arg PROTOC_GEN_VERSION="$PROTOC_GEN_VERSION" \ --build-arg GRPC_GATEWAY_VERSION="$GRPC_GATEWAY_VERSION" \ .