From 441546fb9318b1afbb3f7fe731e82d78e7db3c98 Mon Sep 17 00:00:00 2001 From: Dan Cojocaru Date: Sun, 1 Sep 2024 03:49:45 +0200 Subject: [PATCH] Update Dockerfile to .NET 8 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 32c7e4b..c1b7878 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # https://hub.docker.com/_/microsoft-dotnet -FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR /source # copy csproj and restore as distinct layers @@ -14,10 +14,10 @@ COPY server/. ./server/ COPY scraper/. ./scraper/ COPY ConsoleTest/. ./ConsoleTest/ WORKDIR /source/server -RUN dotnet publish -f net7.0 -c release -o /app --no-restore +RUN dotnet publish -f net8.0 -c release -o /app --no-restore # final stage/image -FROM mcr.microsoft.com/dotnet/aspnet:7.0 +FROM mcr.microsoft.com/dotnet/aspnet:8.0 WORKDIR /app COPY --from=build /app ./ ENV INSIDE_DOCKER=true