From 421bf3217a9ca17f70191b6393f0e410b7940a23 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 23 Apr 2024 14:09:30 +0200 Subject: [PATCH] Update Dockerfile --- zzz_draft_birdnet-pi/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zzz_draft_birdnet-pi/Dockerfile b/zzz_draft_birdnet-pi/Dockerfile index 1996b6302..e0ed3c240 100644 --- a/zzz_draft_birdnet-pi/Dockerfile +++ b/zzz_draft_birdnet-pi/Dockerfile @@ -28,6 +28,8 @@ RUN \ # Create user groupadd --gid 1000 birdnet && useradd --uid 1000 --gid birdnet --shell /bin/bash --create-home birdnet && \ echo "birdnet ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers && \ + mkdir /root && \ + chown birdnet:birdnet /root && \ \ # Install app curl -f -L -s -S "https://raw.githubusercontent.com/Nachtzuster/BirdNET-Pi/main/newinstaller.sh" -o /newinstaller.sh && \