refactor: use ENTRYPOINT syntax in docker files
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 9 Sep 2024 18:01:25 +0000 (20:01 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 9 Sep 2024 18:01:25 +0000 (20:01 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
docker/Dockerfile
ui/web/docker/Dockerfile

index b794b93642a3baf04f1b9af2b21e9628a572c9f7..9f24facc576ddceb2fee31b2c1f285b1a70e005c 100644 (file)
@@ -32,4 +32,4 @@ RUN set -ex \
   && chmod +x /start.sh \
   && chmod +x /autoconfig.sh
 
-CMD /autoconfig.sh && /start.sh
+ENTRYPOINT ["/bin/sh", "-c", "/autoconfig.sh && /start.sh"]
index 5737d4b47ddc152a98070c2d1665cece3fb83fa8..f8e3389308f68c771058145985cf9fb369d291bd 100644 (file)
@@ -22,4 +22,4 @@ RUN set -ex \
   && chmod +x /start.sh \
   && chmod +x /autoconfig.sh
 
-CMD /autoconfig.sh && /start.sh
+ENTRYPOINT ["/bin/sh", "-c", "/autoconfig.sh && /start.sh"]