From a9b7965dcf7129399242858fa29c0462e1100709 Mon Sep 17 00:00:00 2001 From: gawa971 <44551324+gawa971@users.noreply.github.com> Date: Tue, 24 Sep 2024 13:46:03 +0700 Subject: [PATCH] Enhancement: use apt only when needed docker-entrypoint.sh (#7756) --- docker/docker-entrypoint.sh | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/docker/docker-entrypoint.sh b/docker/docker-entrypoint.sh index 903d578da..b8687dc56 100755 --- a/docker/docker-entrypoint.sh +++ b/docker/docker-entrypoint.sh @@ -122,27 +122,38 @@ install_languages() { if [ ${#langs[@]} -eq 0 ]; then return fi - apt-get update + # Build list of packages to install + to_install=() for lang in "${langs[@]}"; do pkg="tesseract-ocr-$lang" if dpkg --status "$pkg" &>/dev/null; then echo "Package $pkg already installed!" continue - fi - - if ! apt-cache show "$pkg" &>/dev/null; then - echo "Package $pkg not found! :(" - continue - fi - - echo "Installing package $pkg..." - if ! apt-get --assume-yes install "$pkg" &>/dev/null; then - echo "Could not install $pkg" - exit 1 + else + to_install+=("$pkg") fi done + + # Use apt only when we install packages + if [ ${#to_install[@]} -gt 0 ]; then + apt-get update + + for pkg in "${to_install[@]}"; do + + if ! apt-cache show "$pkg" &>/dev/null; then + echo "Skipped $pkg: Package not found! :(" + continue + fi + + echo "Installing package $pkg..." + if ! apt-get --assume-yes install "$pkg" &>/dev/null; then + echo "Could not install $pkg" + exit 1 + fi + done + fi } echo "Paperless-ngx docker container starting..."