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 1
1
FROM mcr.microsoft.com/dotnet/nightly/sdk:latest AS build
2
2
WORKDIR /app
3
3
COPY . .
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
5
5
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
7
7
WORKDIR /app
8
8
COPY --from=build /app/out ./
9
9
Original file line number Diff line number Diff line change 1
1
FROM mcr.microsoft.com/dotnet/nightly/sdk:latest AS build
2
2
WORKDIR /app
3
3
COPY . .
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
5
5
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
7
7
WORKDIR /app
8
8
COPY --from=build /app/out ./
9
9
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
2
2
WORKDIR /app
3
3
COPY . .
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
5
5
6
- FROM mcr.microsoft.com/dotnet/aspnet:8 .0 AS runtime
6
+ FROM mcr.microsoft.com/dotnet/aspnet:9 .0 AS runtime
7
7
# ENV ASPNETCORE_URLS http://*:5000
8
8
WORKDIR /app
9
9
COPY --from=build /app/out ./
Original file line number Diff line number Diff line change 1
1
FROM mcr.microsoft.com/dotnet/nightly/sdk:latest AS build
2
2
WORKDIR /app
3
3
COPY . .
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
5
5
6
6
FROM mcr.microsoft.com/dotnet/nightly/aspnet:latest AS runtime
7
7
# ENV ASPNETCORE_URLS http://*:5000
You can’t perform that action at this time.
0 commit comments