From 89566bf54e376e3b243f1cf30d3d67fdd87f3f24 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Aug 2024 09:55:21 +0200 Subject: [PATCH] Bump dotnet/runtime (#258) Bumps dotnet/runtime from 8.0.7-alpine3.19-amd64 to 8.0.8-alpine3.19-amd64. --- updated-dependencies: - dependency-name: dotnet/runtime dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3898a97..afc7560 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.7-alpine3.19-amd64 AS runtime +FROM mcr.microsoft.com/dotnet/runtime:8.0.8-alpine3.19-amd64 AS runtime # Enable globalization as some exercises use it ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false