From b10f81ec024a7e9f1fa3b71ee56febe38218d5fd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 May 2024 01:06:48 +0000 Subject: [PATCH] Bump dotnet/runtime Bumps dotnet/runtime from 8.0.4-alpine3.19-amd64 to 8.0.5-alpine3.19-amd64. --- updated-dependencies: - dependency-name: dotnet/runtime dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e1c2260..798e6e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ COPY src/Exercism.TestRunner.CSharp/ ./ RUN dotnet publish -r linux-musl-x64 -c Release -o /opt/test-runner --no-restore --self-contained true # Build runtime image -FROM mcr.microsoft.com/dotnet/runtime:8.0.4-alpine3.19-amd64 AS runtime +FROM mcr.microsoft.com/dotnet/runtime:8.0.5-alpine3.19-amd64 AS runtime # Enable globalization as some exercises use it ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false