From 3ffe68dfcd7b21f7e26b479a83199ad2e69666ad Mon Sep 17 00:00:00 2001 From: Hermann Mayer Date: Wed, 9 Oct 2024 13:32:37 +0200 Subject: [PATCH] Corrected some Docker build warnings. Signed-off-by: Hermann Mayer --- 14/Dockerfile | 4 ++-- 16/Dockerfile | 4 ++-- 18/Dockerfile | 4 ++-- 19/Dockerfile | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/14/Dockerfile b/14/Dockerfile index 82d3fe0..a1b31af 100644 --- a/14/Dockerfile +++ b/14/Dockerfile @@ -1,5 +1,5 @@ FROM node:14 -MAINTAINER Hermann Mayer "hermann.mayer@hausgold.de" +LABEL org.opencontainers.image.authors="containers@hausgold.de" # You can change this environment variable on run's with -e ENV MDNS_HOSTNAME=node.local @@ -22,4 +22,4 @@ COPY config/supervisor/* /etc/supervisor/conf.d/ RUN mkdir -p /var/log/supervisor # Define the command to run per default -CMD /usr/bin/supervisord -nc /etc/supervisor/supervisord.conf +CMD ["/usr/bin/supervisord", "-nc", "/etc/supervisor/supervisord.conf"] diff --git a/16/Dockerfile b/16/Dockerfile index 0c039ac..5ece5f1 100644 --- a/16/Dockerfile +++ b/16/Dockerfile @@ -1,5 +1,5 @@ FROM node:16 -MAINTAINER Hermann Mayer "hermann.mayer@hausgold.de" +LABEL org.opencontainers.image.authors="containers@hausgold.de" # You can change this environment variable on run's with -e ENV MDNS_HOSTNAME=node.local @@ -22,4 +22,4 @@ COPY config/supervisor/* /etc/supervisor/conf.d/ RUN mkdir -p /var/log/supervisor # Define the command to run per default -CMD /usr/bin/supervisord -nc /etc/supervisor/supervisord.conf +CMD ["/usr/bin/supervisord", "-nc", "/etc/supervisor/supervisord.conf"] diff --git a/18/Dockerfile b/18/Dockerfile index 16ab3c6..c5fa8f2 100644 --- a/18/Dockerfile +++ b/18/Dockerfile @@ -1,5 +1,5 @@ FROM node:18 -MAINTAINER Hermann Mayer "hermann.mayer@hausgold.de" +LABEL org.opencontainers.image.authors="containers@hausgold.de" # You can change this environment variable on run's with -e ENV MDNS_HOSTNAME=node.local @@ -22,4 +22,4 @@ COPY config/supervisor/* /etc/supervisor/conf.d/ RUN mkdir -p /var/log/supervisor # Define the command to run per default -CMD /usr/bin/supervisord -nc /etc/supervisor/supervisord.conf +CMD ["/usr/bin/supervisord", "-nc", "/etc/supervisor/supervisord.conf"] diff --git a/19/Dockerfile b/19/Dockerfile index d60d027..cb4231d 100644 --- a/19/Dockerfile +++ b/19/Dockerfile @@ -1,5 +1,5 @@ FROM node:19 -MAINTAINER Hermann Mayer "hermann.mayer@hausgold.de" +LABEL org.opencontainers.image.authors="containers@hausgold.de" # You can change this environment variable on run's with -e ENV MDNS_HOSTNAME=node.local @@ -22,4 +22,4 @@ COPY config/supervisor/* /etc/supervisor/conf.d/ RUN mkdir -p /var/log/supervisor # Define the command to run per default -CMD /usr/bin/supervisord -nc /etc/supervisor/supervisord.conf +CMD ["/usr/bin/supervisord", "-nc", "/etc/supervisor/supervisord.conf"]