diff --git a/jackett/Dockerfile b/jackett/Dockerfile index 52a00709e..a07674081 100644 --- a/jackett/Dockerfile +++ b/jackett/Dockerfile @@ -30,12 +30,12 @@ ENV S6_CMD_WAIT_FOR_SERVICES=1 \ # Global LSIO modifications ARG CONFIGLOCATION="/config/addons_config/Jackett" # hadolint ignore=SC2015, SC2013, SC2086 -RUN true \ +RUN \ # Avoid custom-init.d duplications - #for file in $(grep -sril 'Potential tampering with custom' /etc/cont-init.d /etc/services.d /etc/s6-overlay/s6-rc.d); do rm -f $file; done \ + for file in $(grep -sril 'Potential tampering with custom' /etc/cont-init.d /etc/services.d /etc/s6-overlay/s6-rc.d); do rm -f $file; done \ \ # Create new config folder if needed - && for file in $(grep -srl "PUID" /etc/cont-init.d /etc/s6-overlay/s6-rc.d); do sed -i "1a mkdir -p $CONFIGLOCATION" $file; done \ + #&& for file in $(grep -srl "PUID" /etc/cont-init.d /etc/s6-overlay/s6-rc.d); do sed -i "1a mkdir -p $CONFIGLOCATION" $file; done \ \ # Allow UID and GID setting && for file in $(grep -srl "PUID" /etc/cont-init.d /etc/s6-overlay/s6-rc.d); do sed -i 's/bash/bashio/g' $file && sed -i '1a PUID="$(if bashio::config.has_value "PUID"; then bashio::config "PUID"; else echo "0"; fi)"' $file && sed -i '1a PGID="$(if bashio::config.has_value "PGID"; then bashio::config "PGID"; else echo "0"; fi)"' $file; done \