From 8409030d847a7f1115402d509f15f91d8bff6247 Mon Sep 17 00:00:00 2001 From: Wangchong Zhou Date: Thu, 12 Oct 2023 16:42:50 +0800 Subject: [PATCH] fix(deps) install pip without build-essential Speeds up build and reduces image size. --- assets/install-python.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/install-python.sh b/assets/install-python.sh index c78c3173..f5ee0b12 100755 --- a/assets/install-python.sh +++ b/assets/install-python.sh @@ -21,6 +21,6 @@ then rm -rf /tmp/Python-$PYTHON_SRC_VERSION else echo Installing Python from package source - apt install -y python3 python3-pip + apt install -y python3 python3-pip --no-install-recommends fi echo "$(python3 --version) installed"