From 2bacf69d1588f9f06744e02b0ec0f4e4e60097da Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Thu, 14 Nov 2019 17:12:06 +0100 Subject: [PATCH] Taskcluster: install packages for Python 3 in Docker tasks --- etc/taskcluster/docker/base.dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/etc/taskcluster/docker/base.dockerfile b/etc/taskcluster/docker/base.dockerfile index abfa98fda41..568741185cf 100644 --- a/etc/taskcluster/docker/base.dockerfile +++ b/etc/taskcluster/docker/base.dockerfile @@ -14,11 +14,17 @@ RUN \ git \ ca-certificates \ # - # Running mach + # Running mach with Python 2 python \ python-pip \ python-dev \ # + # Running mach with Python 3 + python3 \ + python3-pip \ + python3-dev \ + virtualenv \ + # # Compiling C modules when installing Python packages in a virtualenv gcc \ #