From 3aa69fd73105dc6254b9dd50bcde11414242c009 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Thu, 13 Feb 2020 22:37:59 +0100 Subject: [PATCH] Install virtualenv through APT, in Docker images Fix https://github.com/servo/servo/issues/25757 --- etc/taskcluster/docker/base.dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/etc/taskcluster/docker/base.dockerfile b/etc/taskcluster/docker/base.dockerfile index 568741185cf..4c31c420255 100644 --- a/etc/taskcluster/docker/base.dockerfile +++ b/etc/taskcluster/docker/base.dockerfile @@ -18,6 +18,7 @@ RUN \ python \ python-pip \ python-dev \ + python-virtualenv \ # # Running mach with Python 3 python3 \ @@ -29,8 +30,5 @@ RUN \ gcc \ # # Installing rustup and sccache (build dockerfile) or fetching build artifacts (run tasks) - curl \ - && \ - # Running mach - pip install virtualenv + curl