diff --git a/BTCPayServer.Tests/TestAccount.cs b/BTCPayServer.Tests/TestAccount.cs index c0ef1a4b9..4332ffa33 100644 --- a/BTCPayServer.Tests/TestAccount.cs +++ b/BTCPayServer.Tests/TestAccount.cs @@ -49,9 +49,9 @@ namespace BTCPayServer.Tests IsAdmin = true; } - public async Task CreateClient() + public Task CreateClient() { - return new BTCPayServerClient(parent.PayTester.ServerUri, RegisterDetails.Email, RegisterDetails.Password); + return Task.FromResult(new BTCPayServerClient(parent.PayTester.ServerUri, RegisterDetails.Email, RegisterDetails.Password)); } public async Task CreateClient(params string[] permissions) diff --git a/amd64.Dockerfile b/amd64.Dockerfile index ab43bda09..6d167f108 100644 --- a/amd64.Dockerfile +++ b/amd64.Dockerfile @@ -6,10 +6,12 @@ COPY BTCPayServer/BTCPayServer.csproj BTCPayServer/BTCPayServer.csproj COPY BTCPayServer.Common/BTCPayServer.Common.csproj BTCPayServer.Common/BTCPayServer.Common.csproj COPY BTCPayServer.Rating/BTCPayServer.Rating.csproj BTCPayServer.Rating/BTCPayServer.Rating.csproj COPY BTCPayServer.Data/BTCPayServer.Data.csproj BTCPayServer.Data/BTCPayServer.Data.csproj +COPY BTCPayServer.Client/BTCPayServer.Client.csproj BTCPayServer.Client/BTCPayServer.Client.csproj RUN cd BTCPayServer && dotnet restore COPY BTCPayServer.Common/. BTCPayServer.Common/. COPY BTCPayServer.Rating/. BTCPayServer.Rating/. COPY BTCPayServer.Data/. BTCPayServer.Data/. +COPY BTCPayServer.Client/. BTCPayServer.Client/. COPY BTCPayServer/. BTCPayServer/. COPY Build/Version.csproj Build/Version.csproj RUN cd BTCPayServer && dotnet publish --output /app/ --configuration Release diff --git a/arm32v7.Dockerfile b/arm32v7.Dockerfile index 5418edf45..cfd8d458b 100644 --- a/arm32v7.Dockerfile +++ b/arm32v7.Dockerfile @@ -10,10 +10,12 @@ COPY BTCPayServer/BTCPayServer.csproj BTCPayServer/BTCPayServer.csproj COPY BTCPayServer.Common/BTCPayServer.Common.csproj BTCPayServer.Common/BTCPayServer.Common.csproj COPY BTCPayServer.Rating/BTCPayServer.Rating.csproj BTCPayServer.Rating/BTCPayServer.Rating.csproj COPY BTCPayServer.Data/BTCPayServer.Data.csproj BTCPayServer.Data/BTCPayServer.Data.csproj +COPY BTCPayServer.Client/BTCPayServer.Client.csproj BTCPayServer.Client/BTCPayServer.Client.csproj RUN cd BTCPayServer && dotnet restore COPY BTCPayServer.Common/. BTCPayServer.Common/. COPY BTCPayServer.Rating/. BTCPayServer.Rating/. COPY BTCPayServer.Data/. BTCPayServer.Data/. +COPY BTCPayServer.Client/. BTCPayServer.Client/. COPY BTCPayServer/. BTCPayServer/. COPY Build/Version.csproj Build/Version.csproj RUN cd BTCPayServer && dotnet publish --output /app/ --configuration Release diff --git a/arm64v8.Dockerfile b/arm64v8.Dockerfile index 85d3ee42b..5370b6730 100644 --- a/arm64v8.Dockerfile +++ b/arm64v8.Dockerfile @@ -10,10 +10,12 @@ COPY BTCPayServer/BTCPayServer.csproj BTCPayServer/BTCPayServer.csproj COPY BTCPayServer.Common/BTCPayServer.Common.csproj BTCPayServer.Common/BTCPayServer.Common.csproj COPY BTCPayServer.Rating/BTCPayServer.Rating.csproj BTCPayServer.Rating/BTCPayServer.Rating.csproj COPY BTCPayServer.Data/BTCPayServer.Data.csproj BTCPayServer.Data/BTCPayServer.Data.csproj +COPY BTCPayServer.Client/BTCPayServer.Client.csproj BTCPayServer.Client/BTCPayServer.Client.csproj RUN cd BTCPayServer && dotnet restore COPY BTCPayServer.Common/. BTCPayServer.Common/. COPY BTCPayServer.Rating/. BTCPayServer.Rating/. COPY BTCPayServer.Data/. BTCPayServer.Data/. +COPY BTCPayServer.Client/. BTCPayServer.Client/. COPY BTCPayServer/. BTCPayServer/. COPY Build/Version.csproj Build/Version.csproj RUN cd BTCPayServer && dotnet publish --output /app/ --configuration Release