1
0

Updated Torq to v0.19.1 (#760)

This commit is contained in:
maxwedwards
2023-03-21 19:03:03 +00:00
committed by GitHub
parent 8d55c3f0ba
commit ea76fd8a63
3 changed files with 8 additions and 8 deletions

View File

@@ -1006,18 +1006,18 @@ cd - && cd ..
# Build torq
# https://raw.githubusercontent.com/lncapital/torq/v0.17.3/Dockerfile
# https://raw.githubusercontent.com/lncapital/torq/v0.19.1/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/lncapital/torq/v0.17.3/Dockerfile
# https://raw.githubusercontent.com/lncapital/torq/v0.19.1/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/lncapital/torq/v0.17.3/Dockerfile
# https://raw.githubusercontent.com/lncapital/torq/v0.19.1/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile"
echo "Building lncapital/torq:0.17.3"
echo "Building lncapital/torq:0.19.1"
git clone https://github.com/lncapital/torq torq
cd torq
git checkout v0.17.3
git checkout v0.19.1
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "lncapital/torq:0.17.3" .
docker build -f "$DOCKERFILE" -t "lncapital/torq:0.19.1" .
cd - && cd ..