From 24984294e5db8238baa112291009fcfa6407fd5b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 07:50:45 +0000 Subject: [PATCH] build(deps): bump dotnet/runtime-deps Bumps dotnet/runtime-deps from 7.0.12-alpine3.18-amd64 to 8.0.0-alpine3.18-amd64. --- updated-dependencies: - dependency-name: dotnet/runtime-deps dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 58fc8654..19974a43 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:8.0.0-alpine3.18-amd64 AS runtime WORKDIR /opt/analyzer COPY --from=build /opt/analyzer/ .