File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11FROM mcr.microsoft.com/dotnet/nightly/sdk:latest AS build
22WORKDIR /app
33COPY . .
4- RUN dotnet publish src/Benchmarks/Benchmarks.csproj -c Release -o out -f net9 .0 -p:BenchmarksTargetFramework=net9 .0 -p:MicrosoftAspNetCoreAppPackageVersion=$ASPNET_VERSION
4+ RUN dotnet publish src/Benchmarks/Benchmarks.csproj -c Release -o out -f net10 .0 -p:BenchmarksTargetFramework=net10 .0 -p:MicrosoftAspNetCoreAppPackageVersion=$ASPNET_VERSION
55
6- FROM mcr.microsoft.com/dotnet/nightly/aspnet:9 .0-preview-alpine AS runtime
6+ FROM mcr.microsoft.com/dotnet/nightly/aspnet:10 .0-preview-alpine AS runtime
77WORKDIR /app
88COPY --from=build /app/out ./
99
Original file line number Diff line number Diff line change 11FROM mcr.microsoft.com/dotnet/nightly/sdk:latest AS build
22WORKDIR /app
33COPY . .
4- RUN dotnet publish src/Benchmarks/Benchmarks.csproj -c Release -o out -f net9 .0 -p:BenchmarksTargetFramework=net9 .0 -p:MicrosoftAspNetCoreAppPackageVersion=$ASPNET_VERSION
4+ RUN dotnet publish src/Benchmarks/Benchmarks.csproj -c Release -o out -f net10 .0 -p:BenchmarksTargetFramework=net10 .0 -p:MicrosoftAspNetCoreAppPackageVersion=$ASPNET_VERSION
55
6- FROM mcr.microsoft.com/dotnet/nightly/aspnet:9 .0-preview-alpine-composite AS runtime
6+ FROM mcr.microsoft.com/dotnet/nightly/aspnet:10 .0-preview-alpine-composite AS runtime
77WORKDIR /app
88COPY --from=build /app/out ./
99
Original file line number Diff line number Diff line change 1- FROM mcr.microsoft.com/dotnet/sdk:8 .0 AS build
1+ FROM mcr.microsoft.com/dotnet/sdk:9 .0 AS build
22WORKDIR /app
33COPY . .
4- RUN dotnet publish src/Benchmarks/Benchmarks.csproj -c Release -o out -f net8 .0 /p:BenchmarksTargetFramework=net8 .0 /p:MicrosoftAspNetCoreAppPackageVersion=$ASPNET_VERSION
4+ RUN dotnet publish src/Benchmarks/Benchmarks.csproj -c Release -o out -f net9 .0 /p:BenchmarksTargetFramework=net9 .0 /p:MicrosoftAspNetCoreAppPackageVersion=$ASPNET_VERSION
55
6- FROM mcr.microsoft.com/dotnet/aspnet:8 .0 AS runtime
6+ FROM mcr.microsoft.com/dotnet/aspnet:9 .0 AS runtime
77# ENV ASPNETCORE_URLS http://*:5000
88WORKDIR /app
99COPY --from=build /app/out ./
Original file line number Diff line number Diff line change 11FROM mcr.microsoft.com/dotnet/nightly/sdk:latest AS build
22WORKDIR /app
33COPY . .
4- RUN dotnet publish src/Benchmarks/Benchmarks.csproj -c Release -o out -f net9 .0 /p:BenchmarksTargetFramework=net9 .0 /p:MicrosoftAspNetCoreAppPackageVersion=$ASPNET_VERSION
4+ RUN dotnet publish src/Benchmarks/Benchmarks.csproj -c Release -o out -f net10 .0 /p:BenchmarksTargetFramework=net10 .0 /p:MicrosoftAspNetCoreAppPackageVersion=$ASPNET_VERSION
55
66FROM mcr.microsoft.com/dotnet/nightly/aspnet:latest AS runtime
77# ENV ASPNETCORE_URLS http://*:5000
You can’t perform that action at this time.
0 commit comments