From 5e252c77544bc1214bb7a276640beb1e4eb46367 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 22 Dec 2024 21:51:09 +0000 Subject: [PATCH] Bump dotnet/runtime in /implementations/dotnet-jsonschema-net Bumps dotnet/runtime from 8.0-alpine to 9.0-alpine. --- updated-dependencies: - dependency-name: dotnet/runtime dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- implementations/dotnet-jsonschema-net/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implementations/dotnet-jsonschema-net/Dockerfile b/implementations/dotnet-jsonschema-net/Dockerfile index 99b04d300..3a703dab7 100644 --- a/implementations/dotnet-jsonschema-net/Dockerfile +++ b/implementations/dotnet-jsonschema-net/Dockerfile @@ -9,7 +9,7 @@ RUN dotnet restore -a ${TARGETARCH} COPY . . RUN dotnet publish -a ${TARGETARCH} --no-restore -c Release -o /app -FROM mcr.microsoft.com/dotnet/runtime:8.0-alpine +FROM mcr.microsoft.com/dotnet/runtime:9.0-alpine WORKDIR /app COPY --from=build /app . ENTRYPOINT ["dotnet", "bowtie_json_everything.dll"]