From 449772865a8de8f38e29887018d87f5ca6c04afb Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 15 Jan 2026 18:49:52 +0100 Subject: [PATCH] Update entrypoint command in Dockerfile Replace '/usr/bin/env' with '/usr/bin/with-contenv' in init scripts. --- brave/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/brave/Dockerfile b/brave/Dockerfile index e3d1ac16b..0e49f6a44 100644 --- a/brave/Dockerfile +++ b/brave/Dockerfile @@ -91,6 +91,8 @@ RUN chmod 777 /ha_entrypoint.sh /ha_entrypoint_modif.sh && /ha_entrypoint_modif. ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/.bashio-standalone.sh" RUN chmod 777 /.bashio-standalone.sh +RUN sed -i "s|/usr/bin/env|/usr/bin/with-contenv|g" /etc/cont-init.d/* + #WORKDIR / ENTRYPOINT [ "/usr/bin/env" ] CMD [ "/ha_entrypoint.sh" ]