From c5caa46a003d1755bc1ef996b928903d0a91e001 Mon Sep 17 00:00:00 2001 From: Anton Troshin Date: Thu, 14 Mar 2024 01:09:53 -0500 Subject: [PATCH 1/2] Update tutorials pub-sub csharp-subscriber image to dotnet 8.0 Signed-off-by: Anton Troshin --- tutorials/pub-sub/csharp-subscriber/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/pub-sub/csharp-subscriber/Dockerfile b/tutorials/pub-sub/csharp-subscriber/Dockerfile index fc2f1bf5a..c91ca746e 100644 --- a/tutorials/pub-sub/csharp-subscriber/Dockerfile +++ b/tutorials/pub-sub/csharp-subscriber/Dockerfile @@ -1,7 +1,7 @@ # Note: we cannot do a staged dotnet docker build here for arm/arm64. # Build runtime image -FROM mcr.microsoft.com/dotnet/aspnet:7.0 +FROM mcr.microsoft.com/dotnet/aspnet:8.0 WORKDIR /app COPY /out . ENTRYPOINT ["dotnet", "csharp-subscriber.dll"] \ No newline at end of file From 87add1750bdb9323c68965c137bfe60a9e3db703 Mon Sep 17 00:00:00 2001 From: Artur Souza Date: Wed, 3 Jul 2024 12:26:22 -0700 Subject: [PATCH 2/2] Update Dockerfile Signed-off-by: Artur Souza --- tutorials/pub-sub/csharp-subscriber/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tutorials/pub-sub/csharp-subscriber/Dockerfile b/tutorials/pub-sub/csharp-subscriber/Dockerfile index c91ca746e..e7c0c2a1b 100644 --- a/tutorials/pub-sub/csharp-subscriber/Dockerfile +++ b/tutorials/pub-sub/csharp-subscriber/Dockerfile @@ -1,7 +1,6 @@ # Note: we cannot do a staged dotnet docker build here for arm/arm64. -# Build runtime image FROM mcr.microsoft.com/dotnet/aspnet:8.0 WORKDIR /app COPY /out . -ENTRYPOINT ["dotnet", "csharp-subscriber.dll"] \ No newline at end of file +ENTRYPOINT ["dotnet", "csharp-subscriber.dll"]