Skip to content

Commit

Permalink
Corrected some Docker build warnings.
Browse files Browse the repository at this point in the history
Signed-off-by: Hermann Mayer <[email protected]>
  • Loading branch information
Jack12816 committed Oct 9, 2024
1 parent ba1c937 commit 3ffe68d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions 14/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"]
4 changes: 2 additions & 2 deletions 16/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"]
4 changes: 2 additions & 2 deletions 18/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"]
4 changes: 2 additions & 2 deletions 19/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"]

0 comments on commit 3ffe68d

Please sign in to comment.