From 9882ffd595de032ca11f0b671a026f1428cff8ac Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 27 Apr 2024 17:44:05 +0200 Subject: [PATCH] Update Dockerfile --- birdnet-pi/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/birdnet-pi/Dockerfile b/birdnet-pi/Dockerfile index 6d211acd0..f9221b763 100644 --- a/birdnet-pi/Dockerfile +++ b/birdnet-pi/Dockerfile @@ -27,8 +27,17 @@ ENV DEBIAN_FRONTEND="noninteractive" \ XDG_RUNTIME_DIR="/run/user/1000" \ PYTHON_VIRTUAL_ENV="/home/pi/BirdNET-Pi/birdnet/bin/python3" + # Set locale for debian apt +ENV LC_CTYPE="en_US.UTF-8" \ + LC_ALL="en_US.UTF-8" \ + LANGUAGE="en_US.UTF-8" \ + LANG="en_US.UTF-8" + # hadolint ignore=DL3015,SC2016 RUN \ + # Set locale for debian apt + locale-gen en_US.UTF-8 && \ + \ # Install dependencies echo "Install dependencies" && \ apt-get update -y && apt-get install curl gcc python3-dev git jq sudo php-mbstring -y && \