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 305dfca commit 64b129e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 18.01/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM ubuntu:18.04
MAINTAINER Hermann Mayer "[email protected]"
LABEL org.opencontainers.image.authors="[email protected]"

# You can change this environment variable on run's with -e
ENV \
Expand Down Expand Up @@ -29,4 +29,4 @@ RUN mkdir -p /var/log/supervisor
COPY config/ejabberd.yml /etc/ejabberd/ejabberd.yml

# 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 22.05/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM ubuntu:22.10
MAINTAINER Hermann Mayer "[email protected]"
LABEL org.opencontainers.image.authors="[email protected]"

# You can change this environment variable on run's with -e
ENV \
Expand Down Expand Up @@ -35,4 +35,4 @@ RUN mkdir -p /var/log/supervisor
COPY config/ejabberd.yml /etc/ejabberd/ejabberd.yml

# 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 64b129e

Please sign in to comment.