|
@@ -1,9 +1,9 @@
|
|
|
-FROM mcr.microsoft.com/dotnet/core/sdk:5.0 AS build
|
|
|
+FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
|
|
|
WORKDIR /app
|
|
|
COPY PlatformBenchmarks .
|
|
|
RUN dotnet publish -c Release -o out
|
|
|
|
|
|
-FROM mcr.microsoft.com/dotnet/core/aspnet:5.0 AS runtime
|
|
|
+FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS runtime
|
|
|
WORKDIR /app
|
|
|
COPY --from=build /app/out ./
|
|
|
ENTRYPOINT ["dotnet", "PlatformBenchmarks.dll","debug"]
|