|
@@ -1,4 +1,4 @@
|
|
|
-FROM mcr.microsoft.com/dotnet/sdk:5.0-alpine AS build
|
|
|
+FROM mcr.microsoft.com/dotnet/core/sdk:3.1-alpine AS build
|
|
|
WORKDIR /source
|
|
|
|
|
|
# copy csproj and restore as distinct layers
|
|
@@ -10,7 +10,7 @@ COPY Benchmarks/ .
|
|
|
RUN dotnet publish -c release -o /app -r linux-musl-x64 --self-contained true --no-restore /p:PublishTrimmed=true /p:PublishReadyToRun=true
|
|
|
|
|
|
# final stage/image
|
|
|
-FROM mcr.microsoft.com/dotnet/runtime-deps:5.0-alpine
|
|
|
+FROM mcr.microsoft.com/dotnet/core/runtime-deps:3.1-alpine
|
|
|
WORKDIR /app
|
|
|
COPY --from=build /app .
|
|
|
|