From ce56dda53dced3cd6d04389b6b68334df9db90ee Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 30 Jul 2025 09:50:51 +0200 Subject: [PATCH] Update Dockerfile --- omni-tools/Dockerfile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/omni-tools/Dockerfile b/omni-tools/Dockerfile index 87ec284d3..da4746974 100644 --- a/omni-tools/Dockerfile +++ b/omni-tools/Dockerfile @@ -27,11 +27,15 @@ ENV S6_CMD_WAIT_FOR_SERVICES=1 \ S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 \ S6_SERVICES_GRACETIME=0 +# Global LSIO modifications +ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_lsio.sh" "/ha_lsio.sh" +ARG CONFIGLOCATION="/emby" +RUN chmod 744 /ha_lsio.sh && if grep -qr "lsio" /etc; then /ha_lsio.sh "$CONFIGLOCATION"; fi && rm /ha_lsio.sh + ################## # 3 Install apps # ################## - -# Add rootfs +# Copy local files COPY rootfs/ / # Uses /bin for compatibility purposes @@ -104,4 +108,4 @@ LABEL \ ################# # 6 Healthcheck # -################# \ No newline at end of file +#################