There was an error while loading. Please reload this page.
1 parent cd09ee9 commit 254ad51Copy full SHA for 254ad51
dockerfile
@@ -1,4 +1,4 @@
1
-FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build-env
+FROM mcr.microsoft.com/dotnet/sdk:3.1 AS build-env
2
WORKDIR /app
3
4
# copy csproj and restore as distinct layers
@@ -10,7 +10,7 @@ COPY . ./
10
RUN dotnet publish -c Release -o out
11
12
# Build runtime image
13
-FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 AS runtime
+FROM mcr.microsoft.com/dotnet/aspnet:3.1 AS runtime
14
15
COPY --from=build-env /app/out ./
16
ENTRYPOINT ["dotnet", "ClaimsApi.dll"]
0 commit comments