From 254369b0c95fa61017c02cbc5d0039d137bb8d8f Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 4 Jan 2024 15:48:22 +0100 Subject: [PATCH] Update Dockerfile https://github.com/alexbelgium/hassio-addons/issues/1154#issuecomment-1876077498 --- calibre/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ##################