From cf7720cfe7007a48879be1fece42b0821fe8c8f5 Mon Sep 17 00:00:00 2001 From: David Pine Date: Mon, 2 Dec 2024 12:31:41 -0600 Subject: [PATCH] Fix Dockerfile version. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5741f68..7b00908 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build-env +FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build-env # Copy everything and restore WORKDIR /app @@ -16,6 +16,6 @@ LABEL com.github.actions.icon="alert-circle" LABEL com.github.actions.color="yellow" # Build the runtime image -FROM mcr.microsoft.com/dotnet/runtime:8.0 +FROM mcr.microsoft.com/dotnet/runtime:9.0 COPY --from=build-env /app/out . ENTRYPOINT [ "dotnet", "/DotNet.VersionSweeper.dll" ]