From fd54915e4217d76aa8f5aa411dfffd39477e330d Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Fri, 10 May 2024 09:43:21 -0500 Subject: [PATCH] chore(docker): Add metadata via labels This is primarily to support Renovate better. --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5ee23ea1..3c16121d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,11 @@ RUN dotnet publish src/Recyclarr.Cli -a $TARGETARCH --no-restore -o /app # final stage/image FROM mcr.microsoft.com/dotnet/runtime:8.0-alpine +LABEL name="recyclarr" \ + org.opencontainers.image.source="https://github.com/recyclarr/recyclarr" \ + org.opencontainers.image.url="https://recyclarr.dev" \ + org.opencontainers.image.licenses="MIT" + # Read below for the reasons why COMPlus_EnableDiagnostics is set: # https://github.com/dotnet/docs/issues/10217 # https://github.com/dotnet/runtime/issues/96227