From 1d763986e656a9e6b32691bac54ab68107093485 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 24 Apr 2024 17:28:49 +0200 Subject: [PATCH] Update Dockerfile --- zzz_draft_birdnet-pi/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 && \ \