From 7a18def01981b4e6f1125ca6e97f99ac6da80d65 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 1 Aug 2022 22:59:21 +0200 Subject: [PATCH] devops: install python*-dev during build (#16118) `python3-dev` is required to install pip via `curl` command. --- browser_patches/docker_build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/browser_patches/docker_build.sh b/browser_patches/docker_build.sh index a92830dea6..44143b02d6 100755 --- a/browser_patches/docker_build.sh +++ b/browser_patches/docker_build.sh @@ -142,11 +142,11 @@ function ensure_docker_container { # fails to run Firefox build scripts. # Install Python3.8 instead on Ubuntu 18.04 as Python3. if [[ "${BUILD_FLAVOR}" == *ubuntu-18.04* ]]; then - apt-get install -y python3.8 python3.8-distutils + apt-get install -y python3.8 python3.8-dev python3.8-distutils # Point python3 to python3.8 update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 2 else - apt-get install -y python3 python3-distutils + apt-get install -y python3 python3-dev python3-distutils fi curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \