diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2020-02-13 23:59:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-13 23:59:50 -0500 |
commit | 455fb18ecaa253d34aa77cb5354306db0cfcee1c (patch) | |
tree | 078511a60aa17d93e8a455b5d86d767e24e2fb7f | |
parent | f02053621505c1e290793fb6f27efea38d81fb5b (diff) | |
parent | 3aa69fd73105dc6254b9dd50bcde11414242c009 (diff) | |
download | servo-455fb18ecaa253d34aa77cb5354306db0cfcee1c.tar.gz servo-455fb18ecaa253d34aa77cb5354306db0cfcee1c.zip |
Auto merge of #25759 - servo:venv, r=jdm
Install virtualenv through APT, in Docker images
Fix https://github.com/servo/servo/issues/25757
Close https://github.com/servo/servo/pull/25758
-rw-r--r-- | etc/taskcluster/docker/base.dockerfile | 6 |
1 files 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 |