Browse Source

Update Dockerfile to .NET 8

master
Kenneth Bruen 3 weeks ago
parent
commit
441546fb93
Signed by: kbruen
GPG Key ID: C1980A470C3EE5B1
  1. 6
      Dockerfile

6
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

Loading…
Cancel
Save