From 412fbbd2d767666be8371a6e13d12b21d561b730 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 31 Jan 2026 14:47:35 +0100 Subject: [PATCH] Update Dockerfile to remove root user settings Removed root user and LSIO non-root user environment variable. --- immich_openvino/Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/immich_openvino/Dockerfile b/immich_openvino/Dockerfile index 69c0c3409..b667d95ea 100644 --- a/immich_openvino/Dockerfile +++ b/immich_openvino/Dockerfile @@ -27,10 +27,7 @@ ENV S6_CMD_WAIT_FOR_SERVICES=1 \ S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 \ S6_SERVICES_GRACETIME=0 -USER root - # Global LSIO modifications -ENV LSIO_NON_ROOT_USER=0 ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_lsio.sh" "/ha_lsio.sh" ARG CONFIGLOCATION="/config" RUN chmod 744 /ha_lsio.sh && if grep -qr "lsio" /etc; then /ha_lsio.sh "$CONFIGLOCATION"; fi && rm /ha_lsio.sh