diff --git a/build/docker/Dockerfile b/build/docker/Dockerfile index 60e06cc8e3..2181374970 100644 --- a/build/docker/Dockerfile +++ b/build/docker/Dockerfile @@ -1,5 +1,5 @@ # --platform tells docker to always use the host platform for the build not the target platform. Runtime container will use target platform. -FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:9.0.305-azurelinux3.0 AS build +FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:9.0.306-azurelinux3.0 AS build ARG TARGETARCH ARG FHIR_VERSION ARG ASSEMBLY_VER @@ -80,7 +80,7 @@ COPY . . RUN dotnet publish /repo/src/Microsoft.Health.Fhir.${FHIR_VERSION}.Web/Microsoft.Health.Fhir.${FHIR_VERSION}.Web.csproj -o "/build" --no-restore -p:AssemblyVersion="${ASSEMBLY_VER}" -p:FileVersion="${ASSEMBLY_VER}" -p:Version="${ASSEMBLY_VER}" -f net9.0 -a $TARGETARCH # Implicitly uses the target platform for the runtime image. -FROM mcr.microsoft.com/dotnet/aspnet:9.0.9-azurelinux3.0 AS runtime +FROM mcr.microsoft.com/dotnet/aspnet:9.0.10-azurelinux3.0 AS runtime ARG FHIR_VERSION diff --git a/build/dotnet8-compat/global.json b/build/dotnet8-compat/global.json index 100631a86b..bb0a2659e6 100644 --- a/build/dotnet8-compat/global.json +++ b/build/dotnet8-compat/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "8.0.414" + "version": "8.0.415" } } diff --git a/global.json b/global.json index 95edc823d9..feffdd4ee5 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "9.0.305" + "version": "9.0.306" } }