From b09a34d9cd8b28f7bce41154a16f95b35b193102 Mon Sep 17 00:00:00 2001 From: Ske Date: Wed, 9 Jun 2021 12:55:38 +0200 Subject: [PATCH] Add source label to Dockerfile Signed-off-by: Ske --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 44d017c6..e92181fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,8 @@ RUN dotnet build -c Release -o bin # Build runtime stage (doesn't include SDK) FROM mcr.microsoft.com/dotnet/aspnet:5.0 +LABEL org.opencontainers.image.source = "https://github.com/xSke/PluralKit" + WORKDIR /app COPY --from=build /app ./