From 429984dbe0f16f11b3a86dff05d0f4438c8fcdae Mon Sep 17 00:00:00 2001 From: Leandro Nunes Date: Thu, 24 Jun 2021 10:37:00 +0100 Subject: [PATCH] [CI] Install curl in the context of ubuntu_install_nodejs.sh * Make sure that curl is installed, as this script is used on ci_lint, which does not need all the packages installed by ubuntu_install_core.sh --- docker/install/ubuntu_install_nodejs.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker/install/ubuntu_install_nodejs.sh b/docker/install/ubuntu_install_nodejs.sh index 79c2c3e4b19c..de3ba31747b6 100755 --- a/docker/install/ubuntu_install_nodejs.sh +++ b/docker/install/ubuntu_install_nodejs.sh @@ -21,6 +21,10 @@ set -u set -o pipefail apt-get update +# Please do not remove 'curl' package installation from here, as this +# script runs in some images (e.g. ci_lint) that keep a very mininal +# set of packages installed by default. +apt-get install -y curl # The node install script fetched and executed here will update the # apt source list, hence the second apt-get update is necessary.