1
0

Upgrade Tallycoin Connect (#541)

* Upgrade Tallycoin Connect

Now it also supports arm32v7 and arm64v8 architectures.

* Correct Dockerfile repo

* Add images to Docker file builder helper

* Fix GitHub link
This commit is contained in:
d11n
2021-11-01 09:07:16 +01:00
committed by GitHub
parent 343b9c667e
commit 688e1ec46f
3 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Linq;
using System.Collections.Generic;
using System.IO;
@@ -277,6 +277,8 @@ namespace DockerFileBuildHelper
break;
case "tallycoin_connect":
dockerInfo.DockerFilePath = "Dockerfile";
dockerInfo.DockerFilePathARM32v7 = $"Dockerfile.arm32v7";
dockerInfo.DockerFilePathARM64v8 = $"Dockerfile.arm64v8";
dockerInfo.GitLink = "https://github.com/dennisreimann/tallycoin_connect";
dockerInfo.GitRef = $"{image.Tag}";
dockerInfo.SupportedByUs = false;