From 8f3c17df881aaa51424209f0f443f4ecb3b03611 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 07:34:59 +0000 Subject: [PATCH] build(deps): bump dotnet/runtime-deps Bumps dotnet/runtime-deps from 7.0.12-alpine3.18-amd64 to 7.0.13-alpine3.18-amd64. --- updated-dependencies: - dependency-name: dotnet/runtime-deps 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 58fc8654..b0214c78 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ COPY src/Exercism.Analyzers.CSharp . RUN dotnet publish -r linux-musl-x64 -c Release --self-contained true -o /opt/analyzer # Build runtime image -FROM mcr.microsoft.com/dotnet/runtime-deps:7.0.12-alpine3.18-amd64 AS runtime +FROM mcr.microsoft.com/dotnet/runtime-deps:7.0.13-alpine3.18-amd64 AS runtime WORKDIR /opt/analyzer COPY --from=build /opt/analyzer/ .