Add OCI labels to 2.0-openssl Dockerfile

Updated Dockerfile to include Open Container Initiative labels.
This commit is contained in:
alorente 2026-01-30 10:07:37 +01:00 committed by Roger A. Light
parent f73d97dfec
commit 71e5a86bda

View file

@ -1,14 +1,21 @@
FROM alpine:3.23
LABEL maintainer="Roger Light <roger@atchoo.org>" \
description="Eclipse Mosquitto MQTT Broker"
ENV VERSION=2.0.22 \
DOWNLOAD_SHA256=2f752589ef7db40260b633fbdb536e9a04b446a315138d64a7ff3c14e2de6b68 \
GPG_KEYS=A0D6EEA1DCAE49A635A3B2F0779B22DFB3E717B7 \
LWS_VERSION=4.2.1 \
LWS_SHA256=842da21f73ccba2be59e680de10a8cce7928313048750eb6ad73b6fa50763c51
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 && \
apk --no-cache add --virtual build-deps \
build-base \