From bbdd37492a0368e0edb8094447ea8630124ba3c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Sch=C3=B6ppach?= Date: Thu, 22 Feb 2024 23:39:23 +0100 Subject: [PATCH] Also update license gen to .NET 8.0 --- src/licenseGen/Dockerfile | 4 ++-- src/licenseGen/licenseGen.csproj | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/licenseGen/Dockerfile b/src/licenseGen/Dockerfile index 2ca6a37..fa5bcc1 100644 --- a/src/licenseGen/Dockerfile +++ b/src/licenseGen/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/sdk:6.0 as build +FROM mcr.microsoft.com/dotnet/sdk:8.0 as build WORKDIR /licenseGen @@ -12,6 +12,6 @@ RUN set -e; set -x; \ FROM bitbetter/api -COPY --from=build /licenseGen/bin/Debug/netcoreapp6.0/publish/* /app/ +COPY --from=build /licenseGen/bin/Release/netcoreapp8.0/publish/* /app/ ENTRYPOINT [ "dotnet", "/app/licenseGen.dll", "--core", "/app/Core.dll", "--cert", "/cert.pfx" ] diff --git a/src/licenseGen/licenseGen.csproj b/src/licenseGen/licenseGen.csproj index 0edfd9a..f3fd1a5 100644 --- a/src/licenseGen/licenseGen.csproj +++ b/src/licenseGen/licenseGen.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp6.0 + netcoreapp8.0