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 0b56cff commit 5196b8aCopy full SHA for 5196b8a
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
+FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
2
WORKDIR /source
3
4
COPY . .
@@ -7,7 +7,7 @@ RUN dotnet restore ./src/
7
WORKDIR /source/src
8
RUN dotnet publish -c release -o /app --no-restore
9
10
-FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS runtime
+FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS runtime
11
WORKDIR /app
12
COPY --from=build /app ./
13
ENTRYPOINT ["dotnet", "SharpScript.dll"]
0 commit comments