We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55e61f8 commit cd15113Copy full SHA for cd15113
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build-env
+FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build-env
2
WORKDIR /src
3
4
@@ -7,10 +7,10 @@ RUN dotnet restore
7
8
9
COPY . ./
10
-RUN dotnet publish -f net5.0 -c Release -o out
+RUN dotnet publish -f net7.0 -c Release -o out
11
12
13
-FROM mcr.microsoft.com/dotnet/runtime:5.0
+FROM mcr.microsoft.com/dotnet/runtime:7.0
14
15
COPY --from=build-env /src/out .
16
-ENTRYPOINT ["dotnet", "NugetUtility.dll"]
+ENTRYPOINT ["dotnet", "NugetUtility.dll"]
0 commit comments