Add OCI labels to 2.1-alpine Dockerfile

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

View File

@@ -1,12 +1,19 @@
FROM alpine:3.23
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 && \
apk --no-cache add --virtual build-deps \
argon2-dev \