From 899660dfbad7d8394914d417f2b3ed9926b119d7 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 19 Aug 2025 22:03:39 +0200 Subject: [PATCH] Update Dockerfile --- birdnet-pi/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/birdnet-pi/Dockerfile b/birdnet-pi/Dockerfile index 23e0e8d90..e8eab0607 100644 --- a/birdnet-pi/Dockerfile +++ b/birdnet-pi/Dockerfile @@ -38,6 +38,8 @@ RUN chmod 744 /ha_lsio.sh && if grep -qr "lsio" /etc; then /ha_lsio.sh "$CONFIGL SHELL ["/bin/bash", "-o", "pipefail", "-c"] # hadolint ignore=DL3015,SC2016 +# Add rootfs +COPY rootfs/ / RUN \ # Install dependencies echo "Install dependencies" && \ @@ -138,9 +140,6 @@ ENV S6_CMD_WAIT_FOR_SERVICES=1 \ # 3 Install apps # ################## -# Add rootfs -COPY rootfs/ / - # Uses /bin for compatibility purposes # hadolint ignore=DL4005 RUN if [ ! -f /bin/sh ] && [ -f /usr/bin/sh ]; then ln -s /usr/bin/sh /bin/sh; fi && \