From 48d63aca96023dc6a469f32d509f784fd725cf9c Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Fri, 26 Jun 2020 16:29:30 +0000 Subject: [PATCH] Bug 1524723 - Upgrade apt in the Ubuntu 16.04 docker image. r=firefox-build-system-reviewers,rstewart Differential Revision: https://phabricator.services.mozilla.com/D81282 --- taskcluster/docker/recipes/ubuntu1604-test-system-setup.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/taskcluster/docker/recipes/ubuntu1604-test-system-setup.sh b/taskcluster/docker/recipes/ubuntu1604-test-system-setup.sh index ebe2a74af1f0..f2aa7d02a779 100644 --- a/taskcluster/docker/recipes/ubuntu1604-test-system-setup.sh +++ b/taskcluster/docker/recipes/ubuntu1604-test-system-setup.sh @@ -96,6 +96,8 @@ apt_packages+=('python-pip') apt_packages+=('python3-pip') apt-get update +# Start by upgrading apt for CVE-2019-3462. +apt-get install -y apt # This allows ubuntu-desktop to be installed without human interaction export DEBIAN_FRONTEND=noninteractive apt-get install -y -f "${apt_packages[@]}"