From cf8458a57180ab0d8ffca7a1d73626cd00a08864 Mon Sep 17 00:00:00 2001 From: Andreas Mosti Date: Tue, 20 Jun 2023 08:01:10 +0200 Subject: [PATCH] Update prerestore.Dockerfile to dotnet 7 The prerestore.Dockerfile was hanging back on dotnet 5. Bumping it to 7. --- build/prerestore.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/prerestore.Dockerfile b/build/prerestore.Dockerfile index 4bca3c56..48894424 100644 --- a/build/prerestore.Dockerfile +++ b/build/prerestore.Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/sdk:5.0 +FROM mcr.microsoft.com/dotnet/sdk:7.0 # https://www.nuget.org/packages/dotnet-script/ RUN dotnet tool install dotnet-script --tool-path /usr/bin @@ -10,4 +10,4 @@ RUN dotnet tool install dotnet-script --tool-path /usr/bin # docker container. RUN dotnet script eval "Console.WriteLine(\"☑️ Prepared env for offline usage\")" -ENTRYPOINT [ "dotnet", "script" ] \ No newline at end of file +ENTRYPOINT [ "dotnet", "script" ]