mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-03 17:36:59 +01:00
Update dotnet version + nbxplorer
This commit is contained in:
parent
b750663a1f
commit
f94ff4cc74
3 changed files with 8 additions and 7 deletions
|
@ -63,7 +63,7 @@ services:
|
||||||
|
|
||||||
|
|
||||||
nbxplorer:
|
nbxplorer:
|
||||||
image: nicolasdorier/nbxplorer:1.0.2.31
|
image: nicolasdorier/nbxplorer:1.0.3.1
|
||||||
ports:
|
ports:
|
||||||
- "32838:32838"
|
- "32838:32838"
|
||||||
expose:
|
expose:
|
||||||
|
@ -105,6 +105,8 @@ services:
|
||||||
expose:
|
expose:
|
||||||
- "43782" # RPC
|
- "43782" # RPC
|
||||||
- "39388" # P2P
|
- "39388" # P2P
|
||||||
|
- "28332" # ZMQ
|
||||||
|
- "28333" # ZMQ
|
||||||
volumes:
|
volumes:
|
||||||
- "bitcoin_datadir:/data"
|
- "bitcoin_datadir:/data"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<Version>1.0.2.106</Version>
|
<Version>1.0.2.107</Version>
|
||||||
<NoWarn>NU1701,CA1816,CA1308,CA1810,CA2208</NoWarn>
|
<NoWarn>NU1701,CA1816,CA1308,CA1810,CA2208</NoWarn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
@ -47,7 +47,7 @@
|
||||||
<PackageReference Include="NBitcoin" Version="4.1.1.48" />
|
<PackageReference Include="NBitcoin" Version="4.1.1.48" />
|
||||||
<PackageReference Include="NBitpayClient" Version="1.0.0.30" />
|
<PackageReference Include="NBitpayClient" Version="1.0.0.30" />
|
||||||
<PackageReference Include="DBreeze" Version="1.87.0" />
|
<PackageReference Include="DBreeze" Version="1.87.0" />
|
||||||
<PackageReference Include="NBXplorer.Client" Version="1.0.2.19" />
|
<PackageReference Include="NBXplorer.Client" Version="1.0.3" />
|
||||||
<PackageReference Include="NicolasDorier.CommandLine" Version="1.0.0.2" />
|
<PackageReference Include="NicolasDorier.CommandLine" Version="1.0.0.2" />
|
||||||
<PackageReference Include="NicolasDorier.CommandLine.Configuration" Version="1.0.0.3" />
|
<PackageReference Include="NicolasDorier.CommandLine.Configuration" Version="1.0.0.3" />
|
||||||
<PackageReference Include="NicolasDorier.RateLimits" Version="1.0.0.3" />
|
<PackageReference Include="NicolasDorier.RateLimits" Version="1.0.0.3" />
|
||||||
|
@ -59,8 +59,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.0" />
|
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.4" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version=" 2.1.0" PrivateAssets="All" />
|
|
||||||
<PackageReference Include="YamlDotNet" Version="4.3.1" />
|
<PackageReference Include="YamlDotNet" Version="4.3.1" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
FROM microsoft/dotnet:2.1.300-sdk-alpine3.7 AS builder
|
FROM microsoft/dotnet:2.1.402-sdk-alpine3.7 AS builder
|
||||||
WORKDIR /source
|
WORKDIR /source
|
||||||
COPY BTCPayServer/BTCPayServer.csproj BTCPayServer.csproj
|
COPY BTCPayServer/BTCPayServer.csproj BTCPayServer.csproj
|
||||||
# Cache some dependencies
|
# Cache some dependencies
|
||||||
|
@ -6,7 +6,7 @@ RUN dotnet restore
|
||||||
COPY BTCPayServer/. .
|
COPY BTCPayServer/. .
|
||||||
RUN dotnet publish --output /app/ --configuration Release
|
RUN dotnet publish --output /app/ --configuration Release
|
||||||
|
|
||||||
FROM microsoft/dotnet:2.1.0-aspnetcore-runtime-alpine3.7
|
FROM microsoft/dotnet:2.1.4-aspnetcore-runtime-alpine3.7
|
||||||
|
|
||||||
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT false
|
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT false
|
||||||
RUN apk add --no-cache icu-libs
|
RUN apk add --no-cache icu-libs
|
||||||
|
|
Loading…
Add table
Reference in a new issue