From e57475bd213750175b1aeaba467ea70616c5eb02 Mon Sep 17 00:00:00 2001 From: Hermann Mayer Date: Wed, 9 Oct 2024 13:42:12 +0200 Subject: [PATCH] Corrected some Docker build warnings. Signed-off-by: Hermann Mayer --- 3.7/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3.7/Dockerfile b/3.7/Dockerfile index 883ac99..608be23 100644 --- a/3.7/Dockerfile +++ b/3.7/Dockerfile @@ -1,5 +1,5 @@ FROM apache/kafka:3.7.0 -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=kafka.local @@ -24,4 +24,4 @@ RUN chmod +x /usr/local/bin/* COPY config/supervisor/* /etc/supervisor/conf.d/ # Define the command to run per default -CMD /usr/bin/supervisord -nc /etc/supervisord.conf +CMD ["/usr/bin/supervisord", "-nc", "/etc/supervisord.conf"]