🐛 Fix OCI image.url and image repo ARG 🐛

image.url must be the browsable hub.docker.com/r page — docker.io
is only a registry pull host. IMAGE_REPO is the Hub push path and
must use the casjaysdev org.

- Dockerfile: image.url → https://hub.docker.com/r/casjaysdev/xorg; IMAGE_REPO → casjaysdev/xorg
This commit is contained in:
casjay
2026-08-14 14:43:39 -04:00
parent c99cf61c2b
commit dbaad9bea8
+2 -3
View File
@@ -15,7 +15,7 @@ ARG DEBIAN_FRONTEND=noninteractive
ARG SERVICE_PORT=""
ARG EXPOSE_PORTS=""
ARG IMAGE_REPO="dockersrc/xorg"
ARG IMAGE_REPO="casjaysdev/xorg"
ARG IMAGE_VERSION="latest"
ARG CONTAINER_VERSION=""
@@ -203,8 +203,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/dockersrc/xorg"
LABEL org.opencontainers.image.source="https://docker.io/dockersrc/xorg"
LABEL org.opencontainers.image.url="https://hub.docker.com/r/casjaysdev/xorg"
LABEL org.opencontainers.image.vcs-type="Git"
LABEL org.opencontainers.image.revision="${GIT_COMMIT}"
LABEL org.opencontainers.image.source="https://github.com/dockersrc/xorg"