From 19b0455d8a284566d6fdd90c02c97478babe2707 Mon Sep 17 00:00:00 2001 From: Jakob Lichterfeld Date: Wed, 5 Nov 2025 16:46:31 +0100 Subject: [PATCH] chore: Use /bin/dash explicitly in Dockerfile ENTRYPOINT For consistency with the `entrypoint.sh` script's shebang (`#!/usr/bin/env dash`), this change updates the Dockerfile's ENTRYPOINT to call `/bin/dash` directly instead of `/bin/sh`. This makes the choice of shell explicit and ensures the script is always executed by the intended interpreter, regardless of what `/bin/sh` might point to in future base images. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 41d3359d..173a84db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -76,5 +76,5 @@ RUN mkdir $SRTM_CACHE EXPOSE 4000 -ENTRYPOINT ["tini", "--", "/bin/sh", "/entrypoint.sh"] +ENTRYPOINT ["tini", "--", "/bin/dash", "/entrypoint.sh"] CMD ["bin/teslamate", "start"]