Bug 1460475 - Install Python 3 on image_builder; r?dustin draft
authorGregory Szorc <gps@mozilla.com>
Wed, 09 May 2018 17:45:39 -0700
changeset 795338 dc74cb75292584188e3c08095b816e6eee20bead
parent 795256 cf3ee14023483cbbb57129479537c713e22c1980
child 795339 926d63dd653f83582675ac653a454c8149de4ec7
push id109939
push userbmo:gps@mozilla.com
push dateTue, 15 May 2018 17:16:39 +0000
reviewersdustin
bugs1460475
milestone62.0a1
Bug 1460475 - Install Python 3 on image_builder; r?dustin We want Python 3 available everywhere because it is 2018. MozReview-Commit-ID: L3wufNXKdnp
taskcluster/docker/image_builder/setup.sh
--- a/taskcluster/docker/image_builder/setup.sh
+++ b/taskcluster/docker/image_builder/setup.sh
@@ -4,16 +4,18 @@ set -v -e -x
 export DEBIAN_FRONTEND=noninteractive
 
 # Update apt-get lists
 apt-get update -y
 
 # Install dependencies
 apt-get install -y --no-install-recommends \
     socat \
+    python3.5 \
+    python3-minimal \
     python \
     python-requests \
     python-requests-unixsocket
 
 # Extra dependencies only needed for image building. Will be removed at
 # end of script.
 apt-get install -y python-pip