|
|
|
|
@@ -36,9 +36,9 @@ RUN \
|
|
|
|
|
&& echo '#!/bin/sh' > /usr/bin/xdg-mime && chmod +x /usr/bin/xdg-mime
|
|
|
|
|
|
|
|
|
|
# Global LSIO modifications
|
|
|
|
|
ADD --chmod=744 "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_lsio.sh" "/ha_lsio.sh"
|
|
|
|
|
ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_lsio.sh" "/ha_lsio.sh"
|
|
|
|
|
ARG CONFIGLOCATION="/config/addons_config/calibre-web"
|
|
|
|
|
RUN if grep -qr "lsio" /etc; then /ha_lsio.sh "$CONFIGLOCATION"; fi && rm /ha_lsio.sh
|
|
|
|
|
RUN chmod 744 /ha_lsio.sh && if grep -qr "lsio" /etc; then /ha_lsio.sh "$CONFIGLOCATION"; fi && rm /ha_lsio.sh
|
|
|
|
|
|
|
|
|
|
# Specific images modifications
|
|
|
|
|
RUN \
|
|
|
|
|
@@ -55,15 +55,15 @@ COPY rootfs/ /
|
|
|
|
|
ARG MODULES="00-banner.sh 01-custom_script.sh 00-global_var.sh 00-local_mounts.sh 00-smb_mounts.sh"
|
|
|
|
|
|
|
|
|
|
# Automatic modules download
|
|
|
|
|
ADD --chmod=744 "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_automodules.sh" "/ha_automodules.sh"
|
|
|
|
|
RUN /ha_automodules.sh "$MODULES" && rm /ha_automodules.sh
|
|
|
|
|
ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_automodules.sh" "/ha_automodules.sh"
|
|
|
|
|
RUN chmod 744 /ha_automodules.sh && /ha_automodules.sh "$MODULES" && rm /ha_automodules.sh
|
|
|
|
|
|
|
|
|
|
# Manual apps
|
|
|
|
|
ENV PACKAGES="libnss3 libxtst6 libxrandr2"
|
|
|
|
|
|
|
|
|
|
# Automatic apps & bashio
|
|
|
|
|
ADD --chmod=744 "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_autoapps.sh" "/ha_autoapps.sh"
|
|
|
|
|
RUN /ha_autoapps.sh "$PACKAGES" && rm /ha_autoapps.sh
|
|
|
|
|
ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_autoapps.sh" "/ha_autoapps.sh"
|
|
|
|
|
RUN chmod 744 /ha_autoapps.sh && /ha_autoapps.sh "$PACKAGES" && rm /ha_autoapps.sh
|
|
|
|
|
|
|
|
|
|
# Install sqlite3 & set defaults
|
|
|
|
|
RUN if ! command -v sqlite3 >/dev/null 2>/dev/null; then (apt-get update && apt-get install -yqq --no-install-recommends sqlite3 || apk add --no-cache sqlite3) >/dev/null; fi \
|
|
|
|
|
@@ -75,11 +75,11 @@ RUN if ! command -v sqlite3 >/dev/null 2>/dev/null; then (apt-get update && apt-
|
|
|
|
|
|
|
|
|
|
# Add entrypoint
|
|
|
|
|
ENV S6_STAGE2_HOOK=/ha_entrypoint.sh
|
|
|
|
|
ADD --chmod=777 "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_entrypoint.sh" "/ha_entrypoint.sh"
|
|
|
|
|
ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_entrypoint.sh" "/ha_entrypoint.sh"
|
|
|
|
|
|
|
|
|
|
# Entrypoint modifications
|
|
|
|
|
ADD --chmod=777 "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_entrypoint_modif.sh" "/ha_entrypoint_modif.sh"
|
|
|
|
|
RUN /ha_entrypoint_modif.sh && rm /ha_entrypoint_modif.sh
|
|
|
|
|
ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_entrypoint_modif.sh" "/ha_entrypoint_modif.sh"
|
|
|
|
|
RUN chmod 777 /ha_entrypoint.sh /ha_entrypoint_modif.sh && /ha_entrypoint_modif.sh && rm /ha_entrypoint_modif.sh
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
#WORKDIR /
|
|
|
|
|
|