mirror of
https://github.com/lightninglabs/loop
synced 2024-11-04 06:00:21 +00:00
22 lines
529 B
Bash
Executable File
22 lines
529 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Directory of the script file, independent of where it's called from.
|
|
DIR="$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)"
|
|
|
|
PROTOBUF_VERSION=$(go list -f '{{.Version}}' -m google.golang.org/protobuf)
|
|
|
|
echo "Building protobuf compiler docker image..."
|
|
docker build -t loop-protobuf-builder \
|
|
--build-arg PROTOBUF_VERSION="$PROTOBUF_VERSION" \
|
|
.
|
|
|
|
echo "Compiling and formatting *.proto files..."
|
|
docker run \
|
|
--rm \
|
|
--user $UID:$UID \
|
|
-e UID=$UID \
|
|
-v "$DIR/../:/build" \
|
|
loop-protobuf-builder
|