From 450bcae229db2d4c6ed407ae4105fa11b7928cb4 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Fri, 14 Feb 2025 11:14:09 +0100 Subject: [PATCH] --no-install-recommends --- birdnet-pi/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/birdnet-pi/Dockerfile b/birdnet-pi/Dockerfile index 8f6f4d9b9..cb43fc64c 100644 --- a/birdnet-pi/Dockerfile +++ b/birdnet-pi/Dockerfile @@ -19,7 +19,7 @@ ARG BUILD_FROM FROM ${BUILD_FROM} # Install locales -RUN apt-get update && apt-get install -y locales && locale-gen en_US.UTF-8 +RUN apt-get update && apt-get install --no-install-recommends -y locales && locale-gen en_US.UTF-8 ENV DEBIAN_FRONTEND="noninteractive" \ BIRDNET_USER="pi" \ USER="pi" \