diff --git a/src/EventHub.Admin.HttpApi.Host/Dockerfile b/src/EventHub.Admin.HttpApi.Host/Dockerfile index 3ff577d..1e651c9 100644 --- a/src/EventHub.Admin.HttpApi.Host/Dockerfile +++ b/src/EventHub.Admin.HttpApi.Host/Dockerfile @@ -1,4 +1,4 @@ - FROM mcr.microsoft.com/dotnet/aspnet:8.0 + FROM mcr.microsoft.com/dotnet/aspnet:9.0 COPY bin/Release/net9.0/publish/ app/ WORKDIR /app EXPOSE 80 diff --git a/src/EventHub.Admin.HttpApi.Host/Dockerfile.azure b/src/EventHub.Admin.HttpApi.Host/Dockerfile.azure index 0067a91..ee5ac5a 100644 --- a/src/EventHub.Admin.HttpApi.Host/Dockerfile.azure +++ b/src/EventHub.Admin.HttpApi.Host/Dockerfile.azure @@ -5,7 +5,7 @@ FROM ${BASE_IMAGE} AS base WORKDIR /app/eventhub/src/EventHub.Admin.HttpApi.Host RUN dotnet publish -c Release -o bin/Release/publish -FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS publish +FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS publish WORKDIR /app EXPOSE 80 ENV ASPNETCORE_URLS=http://+:80 diff --git a/src/EventHub.BackgroundServices/Dockerfile b/src/EventHub.BackgroundServices/Dockerfile index 4bb545b..0ecb572 100644 --- a/src/EventHub.BackgroundServices/Dockerfile +++ b/src/EventHub.BackgroundServices/Dockerfile @@ -1,4 +1,4 @@ - FROM mcr.microsoft.com/dotnet/aspnet:8.0 + FROM mcr.microsoft.com/dotnet/aspnet:9.0 COPY bin/Release/net9.0/ app/ WORKDIR /app EXPOSE 80 diff --git a/src/EventHub.BackgroundServices/Dockerfile.azure b/src/EventHub.BackgroundServices/Dockerfile.azure index 88eec18..d629a07 100644 --- a/src/EventHub.BackgroundServices/Dockerfile.azure +++ b/src/EventHub.BackgroundServices/Dockerfile.azure @@ -5,7 +5,7 @@ FROM ${BASE_IMAGE} AS base WORKDIR /app/eventhub/src/EventHub.BackgroundServices RUN dotnet publish -c Release -o bin/Release/publish -FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS publish +FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS publish WORKDIR /app EXPOSE 80 ENV ASPNETCORE_URLS=http://+:80 diff --git a/src/EventHub.DbMigrator/Dockerfile b/src/EventHub.DbMigrator/Dockerfile index a3a2b0c..9fc2d67 100644 --- a/src/EventHub.DbMigrator/Dockerfile +++ b/src/EventHub.DbMigrator/Dockerfile @@ -1,4 +1,4 @@ - FROM mcr.microsoft.com/dotnet/aspnet:8.0-jammy + FROM mcr.microsoft.com/dotnet/aspnet:9.0-jammy COPY bin/Release/net9.0/ app/ WORKDIR /app EXPOSE 80 diff --git a/src/EventHub.DbMigrator/Dockerfile.azure b/src/EventHub.DbMigrator/Dockerfile.azure index 883281e..786c5e8 100644 --- a/src/EventHub.DbMigrator/Dockerfile.azure +++ b/src/EventHub.DbMigrator/Dockerfile.azure @@ -5,7 +5,7 @@ FROM ${BASE_IMAGE} AS base WORKDIR /app/eventhub/src/EventHub.DbMigrator RUN dotnet publish -c Release -o bin/Release/publish -FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS publish +FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS publish WORKDIR /app COPY --from=base /app/eventhub/src/EventHub.DbMigrator/bin/Release/publish . ENTRYPOINT ["dotnet", "EventHub.DbMigrator.dll"] \ No newline at end of file diff --git a/src/EventHub.HttpApi.Host/Dockerfile b/src/EventHub.HttpApi.Host/Dockerfile index eec80a0..aa76c3b 100644 --- a/src/EventHub.HttpApi.Host/Dockerfile +++ b/src/EventHub.HttpApi.Host/Dockerfile @@ -1,4 +1,4 @@ - FROM mcr.microsoft.com/dotnet/aspnet:8.0 + FROM mcr.microsoft.com/dotnet/aspnet:9.0 COPY bin/Release/net9.0/publish/ app/ WORKDIR /app EXPOSE 80 diff --git a/src/EventHub.HttpApi.Host/Dockerfile.azure b/src/EventHub.HttpApi.Host/Dockerfile.azure index 9c3795e..658c801 100644 --- a/src/EventHub.HttpApi.Host/Dockerfile.azure +++ b/src/EventHub.HttpApi.Host/Dockerfile.azure @@ -5,7 +5,7 @@ FROM ${BASE_IMAGE} AS base WORKDIR /app/eventhub/src/EventHub.HttpApi.Host RUN dotnet publish -c Release -o bin/Release/publish -FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS publish +FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS publish WORKDIR /app EXPOSE 80 ENV ASPNETCORE_URLS=http://+:80 diff --git a/src/EventHub.IdentityServer/Dockerfile b/src/EventHub.IdentityServer/Dockerfile index 55ba98e..a97966b 100644 --- a/src/EventHub.IdentityServer/Dockerfile +++ b/src/EventHub.IdentityServer/Dockerfile @@ -1,4 +1,4 @@ - FROM mcr.microsoft.com/dotnet/aspnet:8.0 + FROM mcr.microsoft.com/dotnet/aspnet:9.0 COPY bin/Release/net9.0/publish/ app/ WORKDIR /app EXPOSE 80 diff --git a/src/EventHub.IdentityServer/Dockerfile.azure b/src/EventHub.IdentityServer/Dockerfile.azure index 97c0874..6e797c2 100644 --- a/src/EventHub.IdentityServer/Dockerfile.azure +++ b/src/EventHub.IdentityServer/Dockerfile.azure @@ -5,7 +5,7 @@ FROM ${BASE_IMAGE} AS base WORKDIR /app/eventhub/src/EventHub.IdentityServer RUN dotnet publish -c Release -o bin/Release/publish -FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS publish +FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS publish WORKDIR /app EXPOSE 80 ENV ASPNETCORE_URLS=http://+:80 diff --git a/src/EventHub.Web/Dockerfile b/src/EventHub.Web/Dockerfile index 5c16455..74ea933 100644 --- a/src/EventHub.Web/Dockerfile +++ b/src/EventHub.Web/Dockerfile @@ -1,4 +1,4 @@ - FROM mcr.microsoft.com/dotnet/aspnet:8.0 + FROM mcr.microsoft.com/dotnet/aspnet:9.0 COPY bin/Release/net9.0/publish/ app/ WORKDIR /app EXPOSE 80 diff --git a/src/EventHub.Web/Dockerfile.azure b/src/EventHub.Web/Dockerfile.azure index 40c5640..792d05f 100644 --- a/src/EventHub.Web/Dockerfile.azure +++ b/src/EventHub.Web/Dockerfile.azure @@ -5,7 +5,7 @@ FROM ${BASE_IMAGE} AS base WORKDIR /app/eventhub/src/EventHub.Web RUN dotnet publish -c Release -o bin/Release/publish -FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS publish +FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS publish WORKDIR /app EXPOSE 80 ENV ASPNETCORE_URLS=http://+:80