From 790422a9b694e015daf8414c2c5e324b2c025680 Mon Sep 17 00:00:00 2001 From: casjay Date: Fri, 14 Aug 2026 14:43:29 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20OCI=20image.url=20label=20?= =?UTF-8?q?=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. - Dockerfile: image.url → https://hub.docker.com/r/casjaysdev/go; dropped duplicate registry-host source label --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0715f01..aa67919 100644 --- a/Dockerfile +++ b/Dockerfile @@ -271,7 +271,7 @@ LABEL org.opencontainers.image.description="Containerized version of ${IMAGE_NAM LABEL org.opencontainers.image.created="${BUILD_DATE}" LABEL org.opencontainers.image.version="${BUILD_VERSION}" LABEL org.opencontainers.image.revision="${GIT_COMMIT}" -LABEL org.opencontainers.image.url="https://docker.io/casjaysdev/go" +LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/go" LABEL org.opencontainers.image.source="https://github.com/dockersrc/go" LABEL org.opencontainers.image.documentation="https://github.com/dockersrc/go" LABEL org.opencontainers.image.vcs-type="Git"