From 99e0b6e9bc5fb1165fc12376bb1d01c2c01ea395 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 31 Jan 2026 08:19:42 +0100 Subject: [PATCH] Update Dockerfile to install sed before usage Install sed before using it to modify the init-test-run script. --- immich/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/immich/Dockerfile b/immich/Dockerfile index 96d064736..05bb1ec09 100644 --- a/immich/Dockerfile +++ b/immich/Dockerfile @@ -83,7 +83,8 @@ 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 apt-get update && apt-get install -y --no-install-recommends sed \ + && 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"]