diff --git a/birdnet-pi/Dockerfile b/birdnet-pi/Dockerfile index 13eabf47f..46a751d74 100644 --- a/birdnet-pi/Dockerfile +++ b/birdnet-pi/Dockerfile @@ -110,6 +110,9 @@ RUN \ # Give access to caddy for files owned by the user, to allow files modification groupmod -o -g 1000 caddy && usermod -o -u 1000 caddy && \ \ + # Give access to audio group + groupmod -o -g 1000 audio && usermod -o -u 1000 audio && \ + \ # Ensure always pi is used grep -srl "/etc/passwd" "$HOME/BirdNET-Pi/" | while IFS= read -r file; do sed -i "s=/etc/passwd=/etc/passwd | head -1=g" "$file"; done && \ \