From 2f5212f8d05d7c8aaed47638aba0d53a063a710f Mon Sep 17 00:00:00 2001 From: James Chapman Date: Thu, 11 Jul 2024 22:47:19 +0100 Subject: [PATCH] Update to .NET 9 preview --- Dockerfile | 6 +++--- Groceries.Data/Groceries.Data.csproj | 2 +- Groceries/Groceries.csproj | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 74396bd..a2b4e40 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1.7-labs -FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS build1 +FROM mcr.microsoft.com/dotnet/sdk:9.0-preview-alpine AS build1 WORKDIR /src COPY ./.config ./ @@ -10,7 +10,7 @@ WORKDIR Groceries COPY ./Groceries/libman.json ./ RUN dotnet libman restore -FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS build2 +FROM mcr.microsoft.com/dotnet/sdk:9.0-preview-alpine AS build2 WORKDIR /src COPY ./Groceries.sln ./ @@ -23,7 +23,7 @@ COPY . ./ COPY --from=build1 /src ./ RUN dotnet publish --no-restore --output /out -FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine-composite AS base +FROM mcr.microsoft.com/dotnet/aspnet:9.0-preview-alpine-composite AS base WORKDIR /groceries COPY --from=build2 /out . diff --git a/Groceries.Data/Groceries.Data.csproj b/Groceries.Data/Groceries.Data.csproj index a5cb5cf..a911d72 100644 --- a/Groceries.Data/Groceries.Data.csproj +++ b/Groceries.Data/Groceries.Data.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable nullable diff --git a/Groceries/Groceries.csproj b/Groceries/Groceries.csproj index 7a3eb58..edbd095 100644 --- a/Groceries/Groceries.csproj +++ b/Groceries/Groceries.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable nullable