From dacb6dca417e194bc60d132e17561525867a7ba9 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Sat, 17 Nov 2018 00:13:22 +0900 Subject: [PATCH] bump .net core --- BTCPayServer/BTCPayServer.csproj | 8 ++++---- Dockerfile | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/BTCPayServer/BTCPayServer.csproj b/BTCPayServer/BTCPayServer.csproj index 1a50af021..e39a5644b 100644 --- a/BTCPayServer/BTCPayServer.csproj +++ b/BTCPayServer/BTCPayServer.csproj @@ -33,7 +33,7 @@ - + @@ -46,10 +46,10 @@ all runtime; build; native; contentfiles; analyzers - + - + @@ -68,7 +68,7 @@ - + diff --git a/Dockerfile b/Dockerfile index c76491642..9bbfcadce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM microsoft/dotnet:2.1.403-sdk-alpine3.7 AS builder +FROM microsoft/dotnet:2.1.500-sdk-alpine3.7 AS builder WORKDIR /source COPY BTCPayServer/BTCPayServer.csproj BTCPayServer.csproj # Cache some dependencies @@ -6,7 +6,7 @@ RUN dotnet restore COPY BTCPayServer/. . RUN dotnet publish --output /app/ --configuration Release -FROM microsoft/dotnet:2.1.5-aspnetcore-runtime-alpine3.7 +FROM microsoft/dotnet:2.1.6-aspnetcore-runtime-alpine3.7 ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT false RUN apk add --no-cache icu-libs