From 43102fc50a4c51fbfa31c69f25b8c9e84b41c95f Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 31 Jan 2026 07:43:05 +0100 Subject: [PATCH] Change PACKAGES environment variable and fix sed command --- immich_openvino/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/immich_openvino/Dockerfile b/immich_openvino/Dockerfile index 255a26185..e4e92726d 100644 --- a/immich_openvino/Dockerfile +++ b/immich_openvino/Dockerfile @@ -64,7 +64,7 @@ ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templat RUN chmod 744 /ha_automodules.sh && /ha_automodules.sh "$MODULES" && rm /ha_automodules.sh # Manual apps -ENV PACKAGES="sudo yamllint pip jq" +ENV PACKAGES="sudo sed yamllint pip jq" # Automatic apps & bashio ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_autoapps.sh" "/ha_autoapps.sh" @@ -83,7 +83,7 @@ RUN chmod 777 /ha_entrypoint.sh ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/usr/local/lib/bashio-standalone.sh" RUN chmod 0755 /usr/local/lib/bashio-standalone.sh -RUN \ sed -i "s|postgresql-16|postgresql-15|g" /etc/s6-overlay/s6-rc.d/init-test-run/run +RUN sed -i "s|postgresql-16|postgresql-15|g" /etc/s6-overlay/s6-rc.d/init-test-run/run # Install dependencies SHELL ["/bin/bash", "-o", "pipefail", "-c"]