From a956a18e6cb9ce03f8de8e90ce4bf7ed94871e1b Mon Sep 17 00:00:00 2001 From: Jake Jarvis Date: Tue, 17 Nov 2020 09:22:42 -0500 Subject: [PATCH] add org.opencontainers.image.source label https://docs.github.com/en/free-pro-team@latest/packages/managing-container-images-with-github-container-registry/connecting-a-repository-to-a-container-image#connecting-a-repository-to-a-container-image-on-the-command-line --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 154f356..cf7933a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,9 @@ LABEL repository="https://github.com/jakejarvis/hugo-docker" LABEL homepage="https://jarv.is/" LABEL maintainer="Jake Jarvis " +# https://docs.github.com/en/free-pro-team@latest/packages/managing-container-images-with-github-container-registry/connecting-a-repository-to-a-container-image#connecting-a-repository-to-a-container-image-on-the-command-line +LABEL org.opencontainers.image.source https://github.com/jakejarvis/hugo-docker + # only install libc6-compat & libstdc++ if we're building extended Hugo # https://gitlab.com/yaegashi/hugo/commit/22f0d5cbd6114210ba7835468facbdee60609aa2 RUN apk update && \