diff --git a/.templates/bashio-router.sh b/.templates/bashio-router.sh index 337e48f62..286ef9253 100644 --- a/.templates/bashio-router.sh +++ b/.templates/bashio-router.sh @@ -2,22 +2,14 @@ set -euo pipefail REAL_BASHIO="/usr/bin/bashio.real" -if [ -x "/usr/bin/bashio" ] && [ ! -x "$REAL_BASHIO" ]; then - REAL_BASHIO="/usr/bin/bashio" -fi # ---- Supervisor detection ---- -if [ -x "$REAL_BASHIO" ]; then - # Fast HA detection (s6) - if [ -S /run/s6/services/supervisor ]; then - exec "$REAL_BASHIO" "$@" - fi - - # Fallback ping detection (DNS/API) - if "$REAL_BASHIO" supervisor ping >/dev/null 2>&1; then - exec "$REAL_BASHIO" "$@" - fi +# Fast HA detection (s6) +if [ -S /run/s6/services/supervisor ]; then + exec "$REAL_BASHIO" "$@" +elif "$REAL_BASHIO" supervisor ping >/dev/null 2>&1; then + exec "$REAL_BASHIO" "$@" fi # ---- Standalone fallback ---- diff --git a/addons_updater/Dockerfile b/addons_updater/Dockerfile index ad93238e7..39540de91 100644 --- a/addons_updater/Dockerfile +++ b/addons_updater/Dockerfile @@ -66,11 +66,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # Entrypoint logic diff --git a/arpspoof/Dockerfile b/arpspoof/Dockerfile index 2cfaf500b..3b9fd5fbd 100644 --- a/arpspoof/Dockerfile +++ b/arpspoof/Dockerfile @@ -65,11 +65,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ENTRYPOINT [ "/usr/bin/env" ] diff --git a/autobrr/Dockerfile b/autobrr/Dockerfile index d2b423929..cb77a89ab 100644 --- a/autobrr/Dockerfile +++ b/autobrr/Dockerfile @@ -73,11 +73,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio #WORKDIR / ENTRYPOINT [ "/usr/bin/env" ] diff --git a/baikal/Dockerfile b/baikal/Dockerfile index 76a1204e3..57c048991 100644 --- a/baikal/Dockerfile +++ b/baikal/Dockerfile @@ -70,11 +70,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio WORKDIR "/data" diff --git a/battybirdnet-pi/Dockerfile b/battybirdnet-pi/Dockerfile index f08e66b76..773fc9665 100644 --- a/battybirdnet-pi/Dockerfile +++ b/battybirdnet-pi/Dockerfile @@ -164,11 +164,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # Avoid config.yaml interference WORKDIR /config diff --git a/bazarr/Dockerfile b/bazarr/Dockerfile index b01c6721a..d6db5e397 100644 --- a/bazarr/Dockerfile +++ b/bazarr/Dockerfile @@ -70,11 +70,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ############ # 5 Labels # diff --git a/binance-trading-bot/Dockerfile b/binance-trading-bot/Dockerfile index b8e70210c..f079a3253 100644 --- a/binance-trading-bot/Dockerfile +++ b/binance-trading-bot/Dockerfile @@ -85,11 +85,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio VOLUME [ "/data" ] WORKDIR / diff --git a/birdnet-go/Dockerfile b/birdnet-go/Dockerfile index b1b48515c..e8ff85687 100644 --- a/birdnet-go/Dockerfile +++ b/birdnet-go/Dockerfile @@ -65,11 +65,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # Avoid config.yaml interference RUN sed -i "s|config.yaml|config_env.yaml|g" /etc/cont-init.d/01-config_yaml.sh diff --git a/birdnet-pi/Dockerfile b/birdnet-pi/Dockerfile index 0be5f9dd8..ad5160609 100644 --- a/birdnet-pi/Dockerfile +++ b/birdnet-pi/Dockerfile @@ -173,11 +173,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # Avoid config.yaml interference WORKDIR /config diff --git a/birdnet-pipy/Dockerfile b/birdnet-pipy/Dockerfile index 030e7b24a..328812ae9 100644 --- a/birdnet-pipy/Dockerfile +++ b/birdnet-pipy/Dockerfile @@ -99,11 +99,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ENTRYPOINT [ "/usr/bin/env" ] CMD [ "/ha_entrypoint.sh" ] diff --git a/bitwarden/Dockerfile b/bitwarden/Dockerfile index 3730da96b..490f89b59 100644 --- a/bitwarden/Dockerfile +++ b/bitwarden/Dockerfile @@ -96,11 +96,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # #WORKDIR / diff --git a/booksonic_air/Dockerfile b/booksonic_air/Dockerfile index c8e9b8f36..7e94c4b81 100644 --- a/booksonic_air/Dockerfile +++ b/booksonic_air/Dockerfile @@ -76,11 +76,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # #WORKDIR / diff --git a/browser_brave/Dockerfile b/browser_brave/Dockerfile index 089c10e57..2b8bb82c2 100644 --- a/browser_brave/Dockerfile +++ b/browser_brave/Dockerfile @@ -91,11 +91,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio #WORKDIR / #ENTRYPOINT [ "/usr/bin/env" ] diff --git a/browser_chromium/Dockerfile b/browser_chromium/Dockerfile index 089c10e57..2b8bb82c2 100644 --- a/browser_chromium/Dockerfile +++ b/browser_chromium/Dockerfile @@ -91,11 +91,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio #WORKDIR / #ENTRYPOINT [ "/usr/bin/env" ] diff --git a/browserless_chrome/Dockerfile b/browserless_chrome/Dockerfile index 5c5acb6b4..07e687d96 100644 --- a/browserless_chrome/Dockerfile +++ b/browserless_chrome/Dockerfile @@ -67,11 +67,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio RUN \ sed -i "2a /./ha_entrypoint.sh" ./scripts/start.sh diff --git a/calibre/Dockerfile b/calibre/Dockerfile index af758bce7..11cd6eee0 100644 --- a/calibre/Dockerfile +++ b/calibre/Dockerfile @@ -79,11 +79,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # #WORKDIR / diff --git a/calibre_web/Dockerfile b/calibre_web/Dockerfile index b06ef58a7..d83617794 100644 --- a/calibre_web/Dockerfile +++ b/calibre_web/Dockerfile @@ -85,11 +85,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # #WORKDIR / diff --git a/changedetection.io/Dockerfile b/changedetection.io/Dockerfile index ef003d055..4a1630eac 100644 --- a/changedetection.io/Dockerfile +++ b/changedetection.io/Dockerfile @@ -71,11 +71,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio #WORKDIR / #ENTRYPOINT [ "/usr/bin/env" ] diff --git a/cloudcommander/Dockerfile b/cloudcommander/Dockerfile index cdf7b92cc..94b155a84 100644 --- a/cloudcommander/Dockerfile +++ b/cloudcommander/Dockerfile @@ -67,11 +67,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ENTRYPOINT [ "/ha_entrypoint.sh" ] diff --git a/codex/Dockerfile b/codex/Dockerfile index e82d98433..fc8b6f56b 100644 --- a/codex/Dockerfile +++ b/codex/Dockerfile @@ -64,11 +64,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio VOLUME [ "/data" ] WORKDIR / diff --git a/collabora/Dockerfile b/collabora/Dockerfile index 195b5b52c..5eaaf0de9 100644 --- a/collabora/Dockerfile +++ b/collabora/Dockerfile @@ -71,11 +71,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio WORKDIR / ENTRYPOINT [ "/ha_entrypoint.sh" ] diff --git a/comixed/Dockerfile b/comixed/Dockerfile index 99eb1ac4a..2fa730223 100644 --- a/comixed/Dockerfile +++ b/comixed/Dockerfile @@ -80,11 +80,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio VOLUME [ "/data" ] WORKDIR / diff --git a/elasticsearch/Dockerfile b/elasticsearch/Dockerfile index 08ba21ebe..d2649dbee 100644 --- a/elasticsearch/Dockerfile +++ b/elasticsearch/Dockerfile @@ -78,11 +78,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ############ # 5 Labels # diff --git a/emby/Dockerfile b/emby/Dockerfile index 88af2041c..8368c618b 100644 --- a/emby/Dockerfile +++ b/emby/Dockerfile @@ -69,11 +69,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ############ # 5 Labels # diff --git a/emby_beta/Dockerfile b/emby_beta/Dockerfile index fb3da8964..470ff41ff 100644 --- a/emby_beta/Dockerfile +++ b/emby_beta/Dockerfile @@ -69,11 +69,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ############ # 5 Labels # diff --git a/enedisgateway2mqtt/Dockerfile b/enedisgateway2mqtt/Dockerfile index 254653187..211703f50 100644 --- a/enedisgateway2mqtt/Dockerfile +++ b/enedisgateway2mqtt/Dockerfile @@ -64,11 +64,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ENTRYPOINT [ "/usr/bin/env" ] diff --git a/enedisgateway2mqtt_dev/Dockerfile b/enedisgateway2mqtt_dev/Dockerfile index 18e2b9031..823f68df5 100644 --- a/enedisgateway2mqtt_dev/Dockerfile +++ b/enedisgateway2mqtt_dev/Dockerfile @@ -64,11 +64,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ENTRYPOINT [ "/usr/bin/env" ] diff --git a/epicgamesfree/Dockerfile b/epicgamesfree/Dockerfile index d12d19327..54beb8bf4 100644 --- a/epicgamesfree/Dockerfile +++ b/epicgamesfree/Dockerfile @@ -67,11 +67,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # #WORKDIR / diff --git a/filebrowser/Dockerfile b/filebrowser/Dockerfile index d8330177c..780dafa8b 100644 --- a/filebrowser/Dockerfile +++ b/filebrowser/Dockerfile @@ -67,11 +67,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio VOLUME [ "/data" ] WORKDIR / diff --git a/filebrowser_quantum/Dockerfile b/filebrowser_quantum/Dockerfile index 863580748..5b6febb5d 100644 --- a/filebrowser_quantum/Dockerfile +++ b/filebrowser_quantum/Dockerfile @@ -68,11 +68,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio RUN \ sed -i "s|/command/with-contenv|/usr/bin/env|g" "/ha_entrypoint.sh" diff --git a/fireflyiii/Dockerfile b/fireflyiii/Dockerfile index ec5389c4a..844a12ddf 100644 --- a/fireflyiii/Dockerfile +++ b/fireflyiii/Dockerfile @@ -76,11 +76,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio #ENTRYPOINT [ "/usr/bin/env" ] #CMD [ "/ha_entrypoint.sh" ] diff --git a/fireflyiii_data_importer/Dockerfile b/fireflyiii_data_importer/Dockerfile index a5b88d091..d62283125 100644 --- a/fireflyiii_data_importer/Dockerfile +++ b/fireflyiii_data_importer/Dockerfile @@ -78,11 +78,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # Adapt shebang SHELL ["/bin/bash", "-o", "pipefail", "-c"] diff --git a/flaresolverr/Dockerfile b/flaresolverr/Dockerfile index 509a33aae..cec7e985d 100644 --- a/flaresolverr/Dockerfile +++ b/flaresolverr/Dockerfile @@ -66,11 +66,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ENTRYPOINT [ "/usr/bin/env" ] diff --git a/flexget/Dockerfile b/flexget/Dockerfile index b1dd85392..a793bbdb4 100644 --- a/flexget/Dockerfile +++ b/flexget/Dockerfile @@ -82,11 +82,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # #WORKDIR / diff --git a/free_games_claimer/Dockerfile b/free_games_claimer/Dockerfile index c1f1ed2e4..fdaa18c86 100644 --- a/free_games_claimer/Dockerfile +++ b/free_games_claimer/Dockerfile @@ -64,11 +64,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio RUN \ # Change data folder diff --git a/gazpar2mqtt/Dockerfile b/gazpar2mqtt/Dockerfile index 632be980c..dde8ec8e0 100644 --- a/gazpar2mqtt/Dockerfile +++ b/gazpar2mqtt/Dockerfile @@ -67,11 +67,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ENTRYPOINT [ "/usr/bin/env" ] diff --git a/gitea/Dockerfile b/gitea/Dockerfile index b8064b12f..6898dd686 100644 --- a/gitea/Dockerfile +++ b/gitea/Dockerfile @@ -69,11 +69,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ENTRYPOINT [ "/ha_entrypoint.sh" ] diff --git a/grampsweb/Dockerfile b/grampsweb/Dockerfile index 110008e1b..527c3979c 100644 --- a/grampsweb/Dockerfile +++ b/grampsweb/Dockerfile @@ -65,11 +65,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ENTRYPOINT [ "/usr/bin/env" ] CMD [ "/ha_entrypoint.sh" ] diff --git a/grav/Dockerfile b/grav/Dockerfile index 924119863..f91ee8d14 100644 --- a/grav/Dockerfile +++ b/grav/Dockerfile @@ -73,11 +73,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ############ # 5 Labels # diff --git a/guacamole/Dockerfile b/guacamole/Dockerfile index ac92c9632..4e34716b9 100644 --- a/guacamole/Dockerfile +++ b/guacamole/Dockerfile @@ -91,11 +91,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio #WORKDIR /data ENTRYPOINT [ "/usr/bin/env" ] diff --git a/immich/Dockerfile b/immich/Dockerfile index a46c38b34..8e1d6a6ed 100644 --- a/immich/Dockerfile +++ b/immich/Dockerfile @@ -79,11 +79,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio RUN \ sed -i "s|postgresql-16|postgresql-15|g" /etc/s6-overlay/s6-rc.d/init-test-run/run diff --git a/immich_cuda/Dockerfile b/immich_cuda/Dockerfile index a46c38b34..8e1d6a6ed 100644 --- a/immich_cuda/Dockerfile +++ b/immich_cuda/Dockerfile @@ -79,11 +79,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio RUN \ sed -i "s|postgresql-16|postgresql-15|g" /etc/s6-overlay/s6-rc.d/init-test-run/run diff --git a/immich_frame/Dockerfile b/immich_frame/Dockerfile index 56388627e..81cf3656c 100644 --- a/immich_frame/Dockerfile +++ b/immich_frame/Dockerfile @@ -66,11 +66,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ENTRYPOINT [ "/usr/bin/env" ] CMD [ "/ha_entrypoint.sh" ] diff --git a/immich_noml/Dockerfile b/immich_noml/Dockerfile index a46c38b34..8e1d6a6ed 100644 --- a/immich_noml/Dockerfile +++ b/immich_noml/Dockerfile @@ -79,11 +79,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio RUN \ sed -i "s|postgresql-16|postgresql-15|g" /etc/s6-overlay/s6-rc.d/init-test-run/run diff --git a/immich_openvino/Dockerfile b/immich_openvino/Dockerfile index a46c38b34..8e1d6a6ed 100644 --- a/immich_openvino/Dockerfile +++ b/immich_openvino/Dockerfile @@ -79,11 +79,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio RUN \ sed -i "s|postgresql-16|postgresql-15|g" /etc/s6-overlay/s6-rc.d/init-test-run/run diff --git a/immich_power_tools/Dockerfile b/immich_power_tools/Dockerfile index 56388627e..81cf3656c 100644 --- a/immich_power_tools/Dockerfile +++ b/immich_power_tools/Dockerfile @@ -66,11 +66,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ENTRYPOINT [ "/usr/bin/env" ] CMD [ "/ha_entrypoint.sh" ] diff --git a/inadyn/Dockerfile b/inadyn/Dockerfile index 150c2e41d..36195e87d 100644 --- a/inadyn/Dockerfile +++ b/inadyn/Dockerfile @@ -90,11 +90,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio WORKDIR / diff --git a/jackett/Dockerfile b/jackett/Dockerfile index 23300542d..b1d4376e8 100644 --- a/jackett/Dockerfile +++ b/jackett/Dockerfile @@ -72,11 +72,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ############ # 5 Labels # diff --git a/jellyfin/Dockerfile b/jellyfin/Dockerfile index 8dd26920d..fdbef85b7 100644 --- a/jellyfin/Dockerfile +++ b/jellyfin/Dockerfile @@ -80,11 +80,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # #WORKDIR / diff --git a/jellyseerr/Dockerfile b/jellyseerr/Dockerfile index b03481399..2405b7a0b 100644 --- a/jellyseerr/Dockerfile +++ b/jellyseerr/Dockerfile @@ -76,11 +76,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio #ENTRYPOINT [ "/usr/bin/env" ] diff --git a/joal/Dockerfile b/joal/Dockerfile index 32632fef5..977a1f293 100644 --- a/joal/Dockerfile +++ b/joal/Dockerfile @@ -77,11 +77,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ENTRYPOINT [ "/usr/bin/env" ] diff --git a/joplin/Dockerfile b/joplin/Dockerfile index 3fe768529..842d26500 100644 --- a/joplin/Dockerfile +++ b/joplin/Dockerfile @@ -72,11 +72,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio ENTRYPOINT [ "/usr/bin/env" ] diff --git a/kometa/Dockerfile b/kometa/Dockerfile index 18bdddfb9..d86f5fa84 100644 --- a/kometa/Dockerfile +++ b/kometa/Dockerfile @@ -78,11 +78,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # #WORKDIR / diff --git a/librespeed/Dockerfile b/librespeed/Dockerfile index 4f38322c8..a9b6847a0 100644 --- a/librespeed/Dockerfile +++ b/librespeed/Dockerfile @@ -69,11 +69,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # #WORKDIR / diff --git a/lidarr/Dockerfile b/lidarr/Dockerfile index c294d5899..e2931597d 100644 --- a/lidarr/Dockerfile +++ b/lidarr/Dockerfile @@ -72,11 +72,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # #WORKDIR / diff --git a/linkwarden/Dockerfile b/linkwarden/Dockerfile index 7ce5fa271..a5f40d825 100644 --- a/linkwarden/Dockerfile +++ b/linkwarden/Dockerfile @@ -79,11 +79,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/mealie/Dockerfile b/mealie/Dockerfile index be363af91..123c15141 100644 --- a/mealie/Dockerfile +++ b/mealie/Dockerfile @@ -96,11 +96,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/monica/Dockerfile b/monica/Dockerfile index 61ad0e431..fe2a2015f 100644 --- a/monica/Dockerfile +++ b/monica/Dockerfile @@ -101,11 +101,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/mylar3/Dockerfile b/mylar3/Dockerfile index b71a8307c..c52c76fff 100644 --- a/mylar3/Dockerfile +++ b/mylar3/Dockerfile @@ -69,11 +69,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/navidrome/Dockerfile b/navidrome/Dockerfile index 1be5ec739..347152d13 100644 --- a/navidrome/Dockerfile +++ b/navidrome/Dockerfile @@ -68,11 +68,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/nextcloud/Dockerfile b/nextcloud/Dockerfile index 3181b28d9..d3325cba8 100644 --- a/nextcloud/Dockerfile +++ b/nextcloud/Dockerfile @@ -108,11 +108,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/nzbget/Dockerfile b/nzbget/Dockerfile index ad5c4952d..293a8d5fd 100644 --- a/nzbget/Dockerfile +++ b/nzbget/Dockerfile @@ -69,11 +69,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/ombi/Dockerfile b/ombi/Dockerfile index b70b0c01e..d2bf07d85 100644 --- a/ombi/Dockerfile +++ b/ombi/Dockerfile @@ -70,11 +70,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/omni-tools/Dockerfile b/omni-tools/Dockerfile index a1adea34b..6301d50e6 100644 --- a/omni-tools/Dockerfile +++ b/omni-tools/Dockerfile @@ -68,11 +68,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/openproject/Dockerfile b/openproject/Dockerfile index bfa3f542b..fedc13ba3 100644 --- a/openproject/Dockerfile +++ b/openproject/Dockerfile @@ -77,11 +77,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/organizr/Dockerfile b/organizr/Dockerfile index c47058edf..671e70b58 100644 --- a/organizr/Dockerfile +++ b/organizr/Dockerfile @@ -68,11 +68,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/overseerr/Dockerfile b/overseerr/Dockerfile index f587c21f8..219aa4967 100644 --- a/overseerr/Dockerfile +++ b/overseerr/Dockerfile @@ -70,11 +70,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/photoprism/Dockerfile b/photoprism/Dockerfile index 4b7102aca..a830fb937 100644 --- a/photoprism/Dockerfile +++ b/photoprism/Dockerfile @@ -75,11 +75,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/piwigo/Dockerfile b/piwigo/Dockerfile index 2022cfc21..436ab5a22 100644 --- a/piwigo/Dockerfile +++ b/piwigo/Dockerfile @@ -71,11 +71,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/plex/Dockerfile b/plex/Dockerfile index 79894ad50..cc337bbb2 100644 --- a/plex/Dockerfile +++ b/plex/Dockerfile @@ -83,11 +83,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/portainer/Dockerfile b/portainer/Dockerfile index 6cf8c6f84..3d9eb0565 100644 --- a/portainer/Dockerfile +++ b/portainer/Dockerfile @@ -87,11 +87,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/portainer_agent/Dockerfile b/portainer_agent/Dockerfile index e8b234935..ac2d18259 100644 --- a/portainer_agent/Dockerfile +++ b/portainer_agent/Dockerfile @@ -78,11 +78,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio RUN chmod a+x /usr/sbin/healthcheck && \ chmod a+x /usr/sbin/wait-for-signal diff --git a/postgres_15/Dockerfile b/postgres_15/Dockerfile index a8f9bd6a4..5dc518b1c 100644 --- a/postgres_15/Dockerfile +++ b/postgres_15/Dockerfile @@ -71,11 +71,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/prowlarr/Dockerfile b/prowlarr/Dockerfile index bc4b978b2..13d6a9361 100644 --- a/prowlarr/Dockerfile +++ b/prowlarr/Dockerfile @@ -72,11 +72,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/qbittorrent/Dockerfile b/qbittorrent/Dockerfile index 0f8000a5f..48ffdf8fe 100644 --- a/qbittorrent/Dockerfile +++ b/qbittorrent/Dockerfile @@ -134,11 +134,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/radarr/Dockerfile b/radarr/Dockerfile index 4026174c0..afbb57654 100644 --- a/radarr/Dockerfile +++ b/radarr/Dockerfile @@ -73,11 +73,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/readarr/Dockerfile b/readarr/Dockerfile index 04c5fbd9a..fe669fda7 100644 --- a/readarr/Dockerfile +++ b/readarr/Dockerfile @@ -70,11 +70,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/requestrr/Dockerfile b/requestrr/Dockerfile index 609957a32..c1ea0b091 100644 --- a/requestrr/Dockerfile +++ b/requestrr/Dockerfile @@ -72,11 +72,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/resiliosync/Dockerfile b/resiliosync/Dockerfile index 47aca5b10..a2a98d95e 100644 --- a/resiliosync/Dockerfile +++ b/resiliosync/Dockerfile @@ -91,11 +91,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/sabnzbd/Dockerfile b/sabnzbd/Dockerfile index ad5c4952d..293a8d5fd 100644 --- a/sabnzbd/Dockerfile +++ b/sabnzbd/Dockerfile @@ -69,11 +69,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/scrutiny/Dockerfile b/scrutiny/Dockerfile index abbcdf3a2..f0ebf3e1b 100644 --- a/scrutiny/Dockerfile +++ b/scrutiny/Dockerfile @@ -67,11 +67,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/scrutiny_fa/Dockerfile b/scrutiny_fa/Dockerfile index 4adeaed79..ccb3327d1 100644 --- a/scrutiny_fa/Dockerfile +++ b/scrutiny_fa/Dockerfile @@ -64,11 +64,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/seafile/Dockerfile b/seafile/Dockerfile index 807534b5c..b05c47fad 100644 --- a/seafile/Dockerfile +++ b/seafile/Dockerfile @@ -70,11 +70,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/signalk/Dockerfile b/signalk/Dockerfile index 9bb366e6f..4f8cbe6fb 100644 --- a/signalk/Dockerfile +++ b/signalk/Dockerfile @@ -73,11 +73,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/social_to_mealie/Dockerfile b/social_to_mealie/Dockerfile index 8199c2636..514eaf924 100644 --- a/social_to_mealie/Dockerfile +++ b/social_to_mealie/Dockerfile @@ -66,11 +66,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/sonarr/Dockerfile b/sonarr/Dockerfile index b395577c2..f144a0a65 100644 --- a/sonarr/Dockerfile +++ b/sonarr/Dockerfile @@ -73,11 +73,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/sponsorblockcast/Dockerfile b/sponsorblockcast/Dockerfile index d2bd1bd80..83b9c63e9 100644 --- a/sponsorblockcast/Dockerfile +++ b/sponsorblockcast/Dockerfile @@ -66,11 +66,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/spotweb/Dockerfile b/spotweb/Dockerfile index 3934672b9..c590860f4 100644 --- a/spotweb/Dockerfile +++ b/spotweb/Dockerfile @@ -123,11 +123,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/tandoor_recipes/Dockerfile b/tandoor_recipes/Dockerfile index cfa8c363a..d5b5f125c 100644 --- a/tandoor_recipes/Dockerfile +++ b/tandoor_recipes/Dockerfile @@ -64,11 +64,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/tdarr/Dockerfile b/tdarr/Dockerfile index a2545041c..cb7cdfeac 100644 --- a/tdarr/Dockerfile +++ b/tdarr/Dockerfile @@ -64,11 +64,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/teamspeak/Dockerfile b/teamspeak/Dockerfile index 09a27cb8b..d6014bdb5 100644 --- a/teamspeak/Dockerfile +++ b/teamspeak/Dockerfile @@ -71,11 +71,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/transmission/Dockerfile b/transmission/Dockerfile index 804b4dc52..e3b8838c3 100644 --- a/transmission/Dockerfile +++ b/transmission/Dockerfile @@ -80,11 +80,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/transmission_openvpn/Dockerfile b/transmission_openvpn/Dockerfile index a9a1d6348..a7b7108d2 100644 --- a/transmission_openvpn/Dockerfile +++ b/transmission_openvpn/Dockerfile @@ -70,11 +70,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/ubooquity/Dockerfile b/ubooquity/Dockerfile index fea1a6c90..f25d20e33 100644 --- a/ubooquity/Dockerfile +++ b/ubooquity/Dockerfile @@ -83,11 +83,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/unpackerr/Dockerfile b/unpackerr/Dockerfile index c43d350e3..a955524d6 100644 --- a/unpackerr/Dockerfile +++ b/unpackerr/Dockerfile @@ -68,11 +68,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/webtop_kde/Dockerfile b/webtop_kde/Dockerfile index 031f05b6f..a4eff292f 100644 --- a/webtop_kde/Dockerfile +++ b/webtop_kde/Dockerfile @@ -86,11 +86,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/webtrees/Dockerfile b/webtrees/Dockerfile index c88fd4297..9eb576b06 100644 --- a/webtrees/Dockerfile +++ b/webtrees/Dockerfile @@ -88,11 +88,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/wger/Dockerfile b/wger/Dockerfile index 43815ab81..8feba3cf7 100644 --- a/wger/Dockerfile +++ b/wger/Dockerfile @@ -77,11 +77,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/whatsapper/Dockerfile b/whatsapper/Dockerfile index 893cedab4..55b8d9ef7 100644 --- a/whatsapper/Dockerfile +++ b/whatsapper/Dockerfile @@ -68,11 +68,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/whoogle/Dockerfile b/whoogle/Dockerfile index 4536751cf..6569a0533 100644 --- a/whoogle/Dockerfile +++ b/whoogle/Dockerfile @@ -70,11 +70,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/xteve/Dockerfile b/xteve/Dockerfile index 8d0cb0c40..a08efc293 100644 --- a/xteve/Dockerfile +++ b/xteve/Dockerfile @@ -70,11 +70,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/zoneminder/Dockerfile b/zoneminder/Dockerfile index 17c8c4308..0aa3ebc8c 100644 --- a/zoneminder/Dockerfile +++ b/zoneminder/Dockerfile @@ -75,11 +75,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/zzz_archived_code-server/Dockerfile b/zzz_archived_code-server/Dockerfile index 929379d09..fd4266a1e 100644 --- a/zzz_archived_code-server/Dockerfile +++ b/zzz_archived_code-server/Dockerfile @@ -70,11 +70,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/zzz_archived_omada/Dockerfile b/zzz_archived_omada/Dockerfile index 006ebcd9f..86d370be7 100644 --- a/zzz_archived_omada/Dockerfile +++ b/zzz_archived_omada/Dockerfile @@ -68,11 +68,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio COPY rootfs/ / RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \; diff --git a/zzz_archived_omada_v3/Dockerfile b/zzz_archived_omada_v3/Dockerfile index 3fced4640..566f8ebb4 100644 --- a/zzz_archived_omada_v3/Dockerfile +++ b/zzz_archived_omada_v3/Dockerfile @@ -74,11 +74,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # #ENTRYPOINT [ "/usr/bin/env" ] diff --git a/zzz_archived_paperless_ngx/Dockerfile b/zzz_archived_paperless_ngx/Dockerfile index f40e3d5c1..77064fb94 100644 --- a/zzz_archived_paperless_ngx/Dockerfile +++ b/zzz_archived_paperless_ngx/Dockerfile @@ -68,11 +68,11 @@ RUN chmod 744 /ha_autoapps.sh && /ha_autoapps.sh "$PACKAGES" && rm /ha_autoapps. RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # Add custom scripts RUN sed -i "2a source /ha_entrypoint.sh" /sbin/docker-entrypoint.sh && \ diff --git a/zzz_archived_papermerge/Dockerfile b/zzz_archived_papermerge/Dockerfile index db0834a43..eef006502 100644 --- a/zzz_archived_papermerge/Dockerfile +++ b/zzz_archived_papermerge/Dockerfile @@ -80,11 +80,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # #WORKDIR / diff --git a/zzz_archived_plex_meta_manager/Dockerfile b/zzz_archived_plex_meta_manager/Dockerfile index 45bb3767a..6fc7538cc 100644 --- a/zzz_archived_plex_meta_manager/Dockerfile +++ b/zzz_archived_plex_meta_manager/Dockerfile @@ -78,11 +78,11 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 777 /ha_entrypoint.sh # Install bashio -ENV PATH="/usr/local/bin:${PATH}" +ENV PATH="/usr/bin:${PATH}" ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/local/bin/bashio" -RUN chmod 0755 /usr/local/bin/bashio +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-router.sh" "/usr/bin/bashio" +RUN chmod 0755 /usr/bin/bashio # #WORKDIR /