From 39c65cedef26344f2f413acb3b4ab792e15ad2e3 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Wed, 14 Sep 2022 12:35:15 +0200 Subject: [PATCH] fix start cmd --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 12e6075..40eeab4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,5 +36,5 @@ EXPOSE 9001/tcp WORKDIR /opt -CMD "/usr/bin/openssl dhparam -out /opt/etc/mosquitto/dh.pem 1024 && /usr/bin/supervisord -c /etc/supervisor/supervisord.conf" +CMD /usr/bin/openssl dhparam -out /opt/etc/mosquitto/dh.pem 1024 && /usr/bin/supervisord -c /etc/supervisor/supervisord.conf