From f73d97dfecc2bdbde747f23c01327871803f2174 Mon Sep 17 00:00:00 2001 From: alorente Date: Fri, 30 Jan 2026 10:06:48 +0100 Subject: [PATCH] Add OCI labels to 2.1-alpine Dockerfile Updated Dockerfile to include Open Container Initiative labels. --- docker/2.1-alpine/Dockerfile | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/docker/2.1-alpine/Dockerfile b/docker/2.1-alpine/Dockerfile index b52b1d61..97746d20 100644 --- a/docker/2.1-alpine/Dockerfile +++ b/docker/2.1-alpine/Dockerfile @@ -1,12 +1,19 @@ FROM alpine:3.23 -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 && \ apk --no-cache add --virtual build-deps \ argon2-dev \