Add OCI labels to 2.1-ubuntu Dockerfile

Updated Dockerfile to include Open Container Initiative labels.
This commit is contained in:
alorente 2026-01-30 10:01:51 +01:00 committed by Roger A. Light
parent 578d30e90f
commit 928fa9724f

View file

@ -1,12 +1,19 @@
FROM ubuntu:24.04
LABEL maintainer="Roger Light <roger@atchoo.org>" \
description="Eclipse Mosquitto MQTT Broker"
ENV VERSION=2.1.0.1 \
DOWNLOAD_SHA256=cd0dd9d2b824746f9bc7dfc0a26a62854f64de72c1838023a12471f66b25dd7c \
GPG_KEYS=A0D6EEA1DCAE49A635A3B2F0779B22DFB3E717B7
LABEL \
org.opencontainers.image.authors="Roger Light <roger@atchoo.org>" \
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 \