diff options
-rw-r--r-- | etc/taskcluster/docker/base.dockerfile | 8 |
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 \ # |