From 5c1e9e51f009f0f672edd1d33e4af8b679b20bff Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 20 Aug 2025 05:16:23 +0200 Subject: [PATCH] Update Dockerfile --- birdnet-pi/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/birdnet-pi/Dockerfile b/birdnet-pi/Dockerfile index 7bc61139e..99c230a1d 100644 --- a/birdnet-pi/Dockerfile +++ b/birdnet-pi/Dockerfile @@ -56,6 +56,10 @@ RUN \ cp -rf /helpers/journalctl /bin/journalctl && \ chmod a+x /bin/journalctl && \ \ + # Correct for timedatectl + cp /helpers/timedatectl /usr/bin/timedatectl && \ + chmod a+x /usr/bin/timedatectl && \ + \ # Change user to pi and create /home/pi echo "setting users" && \ if id abc >/dev/null 2>&1; then groupmod -o -g 101 abc && usermod -o -u 101 abc; fi && \