From f618d06a309155e4be4aedbaeab26bcca11eafcb Mon Sep 17 00:00:00 2001 From: Matthew Baggett Date: Mon, 12 Feb 2024 18:24:24 +0100 Subject: [PATCH] Add maintainers to containers missing maintainers. --- mqtt/Dockerfile | 4 ++++ node/Dockerfile | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/mqtt/Dockerfile b/mqtt/Dockerfile index 052a1e2..344c592 100644 --- a/mqtt/Dockerfile +++ b/mqtt/Dockerfile @@ -1,5 +1,9 @@ FROM eclipse-mosquitto:injected-version +LABEL maintainer="Matthew Baggett " \ + org.label-schema.vcs-url="https://github.com/benzine-framework/docker" \ + org.opencontainers.image.source="https://github.com/benzine-framework/docker" + COPY mosquitto.conf /mosquitto/config/mosquitto.conf RUN adduser -D mqtt diff --git a/node/Dockerfile b/node/Dockerfile index d8fb592..cc088a8 100644 --- a/node/Dockerfile +++ b/node/Dockerfile @@ -1,5 +1,9 @@ FROM marshall:build AS nodejs +LABEL maintainer="Matthew Baggett " \ + org.label-schema.vcs-url="https://github.com/benzine-framework/docker" \ + org.opencontainers.image.source="https://github.com/benzine-framework/docker" + ARG NODE_VERSION ARG YARN_VERSION ARG PATH="/app/node_modules/.bin:${PATH}"