Merge pull request #7747 from ardevd/gen_protos_full_image_name

fix: use full image name for gen_protos_docker.sh
This commit is contained in:
Oliver Gugger 2023-06-12 11:13:11 +02:00 committed by GitHub
commit 6931a544e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ set -e
DIR="$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)"
# golang docker image version used in this script.
GO_IMAGE=golang:1.20.4-alpine
GO_IMAGE=docker.io/library/golang:1.20.4-alpine
PROTOBUF_VERSION=$(docker run --rm -v $DIR/../:/lnd -w /lnd $GO_IMAGE \
go list -f '{{.Version}}' -m google.golang.org/protobuf)