1
0

Bumped Torq to v0.15.4 (#740)

This commit is contained in:
maxwedwards
2023-01-05 09:37:21 +00:00
committed by GitHub
parent 109e3fbb87
commit c5fc2fc5ca
3 changed files with 8 additions and 8 deletions

View File

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