From 960616ee730b12f56b844a160e04bc910e79c63b Mon Sep 17 00:00:00 2001 From: casjay Date: Fri, 14 Aug 2026 14:43:18 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20OCI=20image.url/source/doc?= =?UTF-8?q?=20labels=20=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit image.url must be the browsable hub.docker.com/r page — docker.io is only a registry pull host. Main Dockerfile was missing the url/source/doc labels entirely; variants carried registry-host URLs in both url and source. - Dockerfile: added image.url https://hub.docker.com/r/casjaysdev/alpine and source/doc https://github.com/dockersrc/alpine - Dockerfile.3.14: image.url fixed; registry-host source label dropped - Dockerfile.3.15: image.url fixed; registry-host source label dropped - Dockerfile.3.16: image.url fixed; registry-host source label dropped - Dockerfile.3.17: image.url fixed; registry-host source label dropped - Dockerfile.3.18: image.url fixed; registry-host source label dropped - Dockerfile.3.19: image.url fixed; registry-host source label dropped - Dockerfile.3.20: image.url fixed; registry-host source label dropped - Dockerfile.3.21: image.url fixed; registry-host source label dropped - Dockerfile.3.22: image.url fixed; registry-host source label dropped - Dockerfile.edge: image.url fixed; registry-host source label dropped --- Dockerfile | 3 +++ Dockerfile.3.14 | 3 +-- Dockerfile.3.15 | 3 +-- Dockerfile.3.16 | 3 +-- Dockerfile.3.17 | 3 +-- Dockerfile.3.18 | 3 +-- Dockerfile.3.19 | 3 +-- Dockerfile.3.20 | 3 +-- Dockerfile.3.21 | 3 +-- Dockerfile.3.22 | 3 +-- Dockerfile.edge | 3 +-- 11 files changed, 13 insertions(+), 20 deletions(-) diff --git a/Dockerfile b/Dockerfile index 90aee26..6d5f052 100644 --- a/Dockerfile +++ b/Dockerfile @@ -99,6 +99,9 @@ LABEL org.opencontainers.image.base.name="${IMAGE_NAME}" LABEL org.opencontainers.image.description="Containerized version of ${IMAGE_NAME}" LABEL org.opencontainers.image.build-date="${BUILD_DATE}" LABEL org.opencontainers.image.authors="CasjaysDev " +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/alpine" +LABEL org.opencontainers.image.source="https://github.com/dockersrc/alpine" +LABEL org.opencontainers.image.documentation="https://github.com/dockersrc/alpine" COPY --from=gosu /usr/local/bin/gosu /usr/local/bin/gosu COPY --from=build / / diff --git a/Dockerfile.3.14 b/Dockerfile.3.14 index 5433034..aa9a962 100644 --- a/Dockerfile.3.14 +++ b/Dockerfile.3.14 @@ -224,8 +224,7 @@ LABEL org.opencontainers.image.authors="${LICENSE}" LABEL org.opencontainers.image.created="${BUILD_DATE}" LABEL org.opencontainers.image.version="${BUILD_VERSION}" LABEL org.opencontainers.image.schema-version="${BUILD_VERSION}" -LABEL org.opencontainers.image.url="https://docker.io/casjaysdev/alpine" -LABEL org.opencontainers.image.source="https://docker.io/casjaysdev/alpine" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/alpine" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${BUILD_VERSION}" LABEL org.opencontainers.image.source="https://github.com/dockersrc/alpine" diff --git a/Dockerfile.3.15 b/Dockerfile.3.15 index f1c7e58..b66e31a 100644 --- a/Dockerfile.3.15 +++ b/Dockerfile.3.15 @@ -224,8 +224,7 @@ LABEL org.opencontainers.image.authors="${LICENSE}" LABEL org.opencontainers.image.created="${BUILD_DATE}" LABEL org.opencontainers.image.version="${BUILD_VERSION}" LABEL org.opencontainers.image.schema-version="${BUILD_VERSION}" -LABEL org.opencontainers.image.url="https://docker.io/casjaysdev/alpine" -LABEL org.opencontainers.image.source="https://docker.io/casjaysdev/alpine" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/alpine" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${BUILD_VERSION}" LABEL org.opencontainers.image.source="https://github.com/dockersrc/alpine" diff --git a/Dockerfile.3.16 b/Dockerfile.3.16 index c65253c..74714dc 100644 --- a/Dockerfile.3.16 +++ b/Dockerfile.3.16 @@ -224,8 +224,7 @@ LABEL org.opencontainers.image.authors="${LICENSE}" LABEL org.opencontainers.image.created="${BUILD_DATE}" LABEL org.opencontainers.image.version="${BUILD_VERSION}" LABEL org.opencontainers.image.schema-version="${BUILD_VERSION}" -LABEL org.opencontainers.image.url="https://docker.io/casjaysdev/alpine" -LABEL org.opencontainers.image.source="https://docker.io/casjaysdev/alpine" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/alpine" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${BUILD_VERSION}" LABEL org.opencontainers.image.source="https://github.com/dockersrc/alpine" diff --git a/Dockerfile.3.17 b/Dockerfile.3.17 index e91c71f..8859007 100644 --- a/Dockerfile.3.17 +++ b/Dockerfile.3.17 @@ -224,8 +224,7 @@ LABEL org.opencontainers.image.authors="${LICENSE}" LABEL org.opencontainers.image.created="${BUILD_DATE}" LABEL org.opencontainers.image.version="${BUILD_VERSION}" LABEL org.opencontainers.image.schema-version="${BUILD_VERSION}" -LABEL org.opencontainers.image.url="https://docker.io/casjaysdev/alpine" -LABEL org.opencontainers.image.source="https://docker.io/casjaysdev/alpine" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/alpine" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${BUILD_VERSION}" LABEL org.opencontainers.image.source="https://github.com/dockersrc/alpine" diff --git a/Dockerfile.3.18 b/Dockerfile.3.18 index cef7284..f564cdd 100644 --- a/Dockerfile.3.18 +++ b/Dockerfile.3.18 @@ -224,8 +224,7 @@ LABEL org.opencontainers.image.authors="${LICENSE}" LABEL org.opencontainers.image.created="${BUILD_DATE}" LABEL org.opencontainers.image.version="${BUILD_VERSION}" LABEL org.opencontainers.image.schema-version="${BUILD_VERSION}" -LABEL org.opencontainers.image.url="https://docker.io/casjaysdev/alpine" -LABEL org.opencontainers.image.source="https://docker.io/casjaysdev/alpine" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/alpine" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${BUILD_VERSION}" LABEL org.opencontainers.image.source="https://github.com/dockersrc/alpine" diff --git a/Dockerfile.3.19 b/Dockerfile.3.19 index 0227077..2b77fd1 100644 --- a/Dockerfile.3.19 +++ b/Dockerfile.3.19 @@ -224,8 +224,7 @@ LABEL org.opencontainers.image.authors="${LICENSE}" LABEL org.opencontainers.image.created="${BUILD_DATE}" LABEL org.opencontainers.image.version="${BUILD_VERSION}" LABEL org.opencontainers.image.schema-version="${BUILD_VERSION}" -LABEL org.opencontainers.image.url="https://docker.io/casjaysdev/alpine" -LABEL org.opencontainers.image.source="https://docker.io/casjaysdev/alpine" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/alpine" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${BUILD_VERSION}" LABEL org.opencontainers.image.source="https://github.com/dockersrc/alpine" diff --git a/Dockerfile.3.20 b/Dockerfile.3.20 index b7ab2a4..8a3eb56 100644 --- a/Dockerfile.3.20 +++ b/Dockerfile.3.20 @@ -224,8 +224,7 @@ LABEL org.opencontainers.image.authors="${LICENSE}" LABEL org.opencontainers.image.created="${BUILD_DATE}" LABEL org.opencontainers.image.version="${BUILD_VERSION}" LABEL org.opencontainers.image.schema-version="${BUILD_VERSION}" -LABEL org.opencontainers.image.url="https://docker.io/casjaysdev/alpine" -LABEL org.opencontainers.image.source="https://docker.io/casjaysdev/alpine" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/alpine" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${BUILD_VERSION}" LABEL org.opencontainers.image.source="https://github.com/dockersrc/alpine" diff --git a/Dockerfile.3.21 b/Dockerfile.3.21 index e9746cd..33ea075 100644 --- a/Dockerfile.3.21 +++ b/Dockerfile.3.21 @@ -224,8 +224,7 @@ LABEL org.opencontainers.image.authors="${LICENSE}" LABEL org.opencontainers.image.created="${BUILD_DATE}" LABEL org.opencontainers.image.version="${BUILD_VERSION}" LABEL org.opencontainers.image.schema-version="${BUILD_VERSION}" -LABEL org.opencontainers.image.url="https://docker.io/casjaysdev/alpine" -LABEL org.opencontainers.image.source="https://docker.io/casjaysdev/alpine" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/alpine" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${BUILD_VERSION}" LABEL org.opencontainers.image.source="https://github.com/dockersrc/alpine" diff --git a/Dockerfile.3.22 b/Dockerfile.3.22 index 33b64b3..08e1e39 100644 --- a/Dockerfile.3.22 +++ b/Dockerfile.3.22 @@ -224,8 +224,7 @@ LABEL org.opencontainers.image.authors="${LICENSE}" LABEL org.opencontainers.image.created="${BUILD_DATE}" LABEL org.opencontainers.image.version="${BUILD_VERSION}" LABEL org.opencontainers.image.schema-version="${BUILD_VERSION}" -LABEL org.opencontainers.image.url="https://docker.io/casjaysdev/alpine" -LABEL org.opencontainers.image.source="https://docker.io/casjaysdev/alpine" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/alpine" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${BUILD_VERSION}" LABEL org.opencontainers.image.source="https://github.com/dockersrc/alpine" diff --git a/Dockerfile.edge b/Dockerfile.edge index c0f8081..8a39b79 100644 --- a/Dockerfile.edge +++ b/Dockerfile.edge @@ -224,8 +224,7 @@ LABEL org.opencontainers.image.authors="${LICENSE}" LABEL org.opencontainers.image.created="${BUILD_DATE}" LABEL org.opencontainers.image.version="${BUILD_VERSION}" LABEL org.opencontainers.image.schema-version="${BUILD_VERSION}" -LABEL org.opencontainers.image.url="https://docker.io/casjaysdev/alpine" -LABEL org.opencontainers.image.source="https://docker.io/casjaysdev/alpine" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/alpine" LABEL org.opencontainers.image.vcs-type="Git" LABEL org.opencontainers.image.revision="${BUILD_VERSION}" LABEL org.opencontainers.image.source="https://github.com/dockersrc/alpine"