diff --git a/calibre/Dockerfile b/calibre/Dockerfile index 02a1d9aab..47512b7d6 100644 --- a/calibre/Dockerfile +++ b/calibre/Dockerfile @@ -34,12 +34,12 @@ VOLUME [ "/sys/fs/cgroup" ] # hadolint ignore=SC2015,DL4006,SC2013,SC2086 RUN \ # Change home folder location - usermod --home /config/addons_config/calibre abc \ + usermod --home /config abc \ && mkdir -p /opt/calibre # Global LSIO modifications ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_lsio.sh" "/ha_lsio.sh" -ARG CONFIGLOCATION="/config/addons_config/calibre" +ARG CONFIGLOCATION="/config" RUN chmod 744 /ha_lsio.sh && if grep -qr "lsio" /etc; then /ha_lsio.sh "$CONFIGLOCATION"; fi && rm /ha_lsio.sh ##################