From 928fa9724f10eed9c677d0cafe94d50284a83fb6 Mon Sep 17 00:00:00 2001 From: alorente Date: Fri, 30 Jan 2026 10:01:51 +0100 Subject: [PATCH] Add OCI labels to 2.1-ubuntu Dockerfile Updated Dockerfile to include Open Container Initiative labels. --- docker/2.1-ubuntu/Dockerfile | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/docker/2.1-ubuntu/Dockerfile b/docker/2.1-ubuntu/Dockerfile index 46a008953..c449b8709 100644 --- a/docker/2.1-ubuntu/Dockerfile +++ b/docker/2.1-ubuntu/Dockerfile @@ -1,12 +1,19 @@ FROM ubuntu:24.04 -LABEL maintainer="Roger Light " \ - description="Eclipse Mosquitto MQTT Broker" - ENV VERSION=2.1.0.1 \ DOWNLOAD_SHA256=cd0dd9d2b824746f9bc7dfc0a26a62854f64de72c1838023a12471f66b25dd7c \ GPG_KEYS=A0D6EEA1DCAE49A635A3B2F0779B22DFB3E717B7 +LABEL \ + org.opencontainers.image.authors="Roger Light " \ + org.opencontainers.image.title="eclipse-mosquitto" \ + org.opencontainers.image.description="Eclipse Mosquitto MQTT Broker" \ + org.opencontainers.image.url="https://mosquitto.org/" \ + org.opencontainers.image.documentation="https://mosquitto.org/documentation/" \ + org.opencontainers.image.source="https://github.com/eclipse-mosquitto/mosquitto" \ + org.opencontainers.image.licenses="EPL-2.0 OR BSD-3-Clause" \ + org.opencontainers.image.version=${VERSION} + RUN set -x && \ apt-get update && \ apt-get install -y \