diff --git a/hyperfleet/standards/container-image-standard.md b/hyperfleet/standards/container-image-standard.md index 74bab1e..904ac11 100644 --- a/hyperfleet/standards/container-image-standard.md +++ b/hyperfleet/standards/container-image-standard.md @@ -220,7 +220,7 @@ All production images **MUST** include standardized OCI labels. Place the `LABEL ```dockerfile ARG APP_VERSION="0.0.0-dev" LABEL name="" \ - vendor="Red Hat" \ + vendor="Red Hat, Inc." \ version="${APP_VERSION}" \ summary="" \ description="" @@ -231,7 +231,7 @@ LABEL name="" \ | Label | Description | Example | |-------|-------------|---------| | `name` | Service name (matches image name) | `hyperfleet-sentinel` | -| `vendor` | Organization | `Red Hat` | +| `vendor` | Organization | `Red Hat, Inc.` | | `version` | Semantic version or git-derived version | `abc1234` | | `summary` | One-line description | `HyperFleet Sentinel - Resource polling and event publishing service` | | `description` | Detailed description of the service | `Watches HyperFleet API resources and publishes reconciliation events to message brokers` | @@ -312,7 +312,7 @@ ENTRYPOINT ["/app/"] ARG APP_VERSION="0.0.0-dev" LABEL name="" \ - vendor="Red Hat" \ + vendor="Red Hat, Inc." \ version="${APP_VERSION}" \ summary="" \ description=""