1
0

Add joinmarket support

This commit is contained in:
nicolas.dorier
2021-09-13 18:43:34 +09:00
parent 611da529bf
commit 65a37e2509
7 changed files with 316 additions and 3 deletions

View File

@@ -246,6 +246,12 @@ namespace DockerFileBuildHelper
dockerInfo.GitRef = $"EPS/{image.Tag}";
dockerInfo.SupportedByUs = true;
break;
case "joinmarket":
dockerInfo.DockerFilePath = $"JoinMarket/{NoRevision(image.Tag)}/linuxamd64.Dockerfile";
dockerInfo.GitLink = "https://github.com/btcpayserver/dockerfile-deps";
dockerInfo.GitRef = $"JoinMarket/{image.Tag}";
dockerInfo.SupportedByUs = true;
break;
case "btglnd":
dockerInfo.DockerFilePath = "Dockerfile";
dockerInfo.GitLink = "https://github.com/vutov/lnd";