diff --git a/zzz_draft_birdnet-pi/Dockerfile b/zzz_draft_birdnet-pi/Dockerfile index e7d2b5b0e..4de219605 100644 --- a/zzz_draft_birdnet-pi/Dockerfile +++ b/zzz_draft_birdnet-pi/Dockerfile @@ -33,7 +33,9 @@ RUN \ # Create user and allow sudo #groupadd --gid 1000 birdnet && useradd --uid 1000 --gid birdnet --shell /bin/bash --create-home birdnet && \ #echo "birdnet ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers && \ - mkdir -p /app && \ + mkdir -p /home/abc && \ + ln -s /home/abc /app && \ + chown -R abc:abc /home/abc && \ chown -R abc:abc /app && \ echo "abc ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers && \ \