From f5c7816322301fe64d3e2ce94f31a1f23941b0ae Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 28 Apr 2024 10:45:21 +0200 Subject: [PATCH] Update Dockerfile --- birdnet-pi/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/birdnet-pi/Dockerfile b/birdnet-pi/Dockerfile index 4b4937082..e088c9da6 100644 --- a/birdnet-pi/Dockerfile +++ b/birdnet-pi/Dockerfile @@ -29,7 +29,7 @@ ENV DEBIAN_FRONTEND="noninteractive" \ # Global LSIO modifications ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_lsio.sh" "/ha_lsio.sh" -ARG CONFIGLOCATION="/emby" +ARG CONFIGLOCATION="/config" RUN chmod 744 /ha_lsio.sh && if grep -qr "lsio" /etc; then /ha_lsio.sh "$CONFIGLOCATION"; fi && rm /ha_lsio.sh # hadolint ignore=DL3015,SC2016