aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2019-11-14 17:12:06 +0100
committermarmeladema <xademax@gmail.com>2019-12-10 16:11:02 +0000
commit2bacf69d1588f9f06744e02b0ec0f4e4e60097da (patch)
tree01fa75f82a0b26c8ca4b2016c2d886a80586a785
parent64e9c0ee230fc0ff9a64a123bb8d612933d87e45 (diff)
downloadservo-2bacf69d1588f9f06744e02b0ec0f4e4e60097da.tar.gz
servo-2bacf69d1588f9f06744e02b0ec0f4e4e60097da.zip
Taskcluster: install packages for Python 3 in Docker tasks
-rw-r--r--etc/taskcluster/docker/base.dockerfile8
1 files changed, 7 insertions, 1 deletions
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 \
#