From a788df32cfb46aeba36c4e44411f5e172e34ed4a Mon Sep 17 00:00:00 2001 From: Paulo Castello da Costa Date: Sun, 24 Nov 2024 18:37:08 -0800 Subject: [PATCH] Update dotnet version from 8.0 to 9.0. --- containers/init/build/dotnet/Dockerfile | 2 +- containers/pre_built_workers/dotnet/Dockerfile | 4 ++-- containers/runtime/dotnet/Dockerfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/containers/init/build/dotnet/Dockerfile b/containers/init/build/dotnet/Dockerfile index b2c1f174..ac9c5e46 100644 --- a/containers/init/build/dotnet/Dockerfile +++ b/containers/init/build/dotnet/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM mcr.microsoft.com/dotnet/sdk:8.0-bookworm-slim +FROM mcr.microsoft.com/dotnet/sdk:9.0-bookworm-slim RUN mkdir -p /src/workspace WORKDIR /src/workspace diff --git a/containers/pre_built_workers/dotnet/Dockerfile b/containers/pre_built_workers/dotnet/Dockerfile index c754177b..8763ddb8 100644 --- a/containers/pre_built_workers/dotnet/Dockerfile +++ b/containers/pre_built_workers/dotnet/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM mcr.microsoft.com/dotnet/sdk:8.0-bookworm-slim +FROM mcr.microsoft.com/dotnet/sdk:9.0-bookworm-slim RUN mkdir -p /pre WORKDIR /pre @@ -40,7 +40,7 @@ RUN dotnet publish -c Release -o qps_worker perf/benchmarkapps/QpsWorker/ # Note that the QpsWorker built by "dotnet publish" in the previous step needs to be runnable # with the runtime image below. -FROM mcr.microsoft.com/dotnet/aspnet:8.0-bookworm-slim +FROM mcr.microsoft.com/dotnet/aspnet:9.0-bookworm-slim # Enable dynamic profile-guided optimization # https://gist.github.com/EgorBo/dc181796683da3d905a5295bfd3dd95b diff --git a/containers/runtime/dotnet/Dockerfile b/containers/runtime/dotnet/Dockerfile index b6e060fd..f5d9a956 100644 --- a/containers/runtime/dotnet/Dockerfile +++ b/containers/runtime/dotnet/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM mcr.microsoft.com/dotnet/aspnet:8.0-bookworm-slim +FROM mcr.microsoft.com/dotnet/aspnet:9.0-bookworm-slim RUN mkdir -p /src/workspace WORKDIR /src/workspace