From 8e04ac7a098f0b63dedc968d3904227c2c248b8e Mon Sep 17 00:00:00 2001 From: James Newton-King Date: Fri, 8 Dec 2023 07:13:31 +0800 Subject: [PATCH] Update dotnet docker images to .NET8 final --- 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 0195b63f..b2c1f174 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-preview-bookworm-slim +FROM mcr.microsoft.com/dotnet/sdk:8.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 ecd0bfc6..c754177b 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-preview-bookworm-slim +FROM mcr.microsoft.com/dotnet/sdk:8.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-preview-bookworm-slim +FROM mcr.microsoft.com/dotnet/aspnet:8.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 0a482888..b6e060fd 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-preview-bookworm-slim +FROM mcr.microsoft.com/dotnet/aspnet:8.0-bookworm-slim RUN mkdir -p /src/workspace WORKDIR /src/workspace