Bug 1632329 [wpt PR 23190] - Add python3 and python3-pip to the docker image, a=testonly

Automatic update from web-platform-tests
Add python3 and python3-pip to the docker image (#23190)

See
https://github.com/web-platform-tests/wpt/pull/23182#issuecomment-618054801

Update README too

--

wpt-commits: cbb6f674bad9b7f58845d4b5fd5b232effea5f4d
wpt-pr: 23190
This commit is contained in:
Stephen McGruer 2020-04-28 11:40:03 +00:00 коммит произвёл moz-wptsync-bot
Родитель b71b3cf457
Коммит a504b386b0
3 изменённых файлов: 11 добавлений и 3 удалений

Просмотреть файл

@ -56,7 +56,7 @@ tasks:
owner: ${owner}
source: ${event.repository.clone_url}
payload:
image: hexcles/web-platform-tests:0.35
image: webplatformtests/wpt:0.36
maxRunTime: 7200
artifacts:
public/results:

Просмотреть файл

@ -25,6 +25,8 @@ RUN apt-get -qqy update \
pulseaudio \
python \
python-pip \
python3 \
python3-pip \
qemu-kvm \
tzdata \
sudo \

Просмотреть файл

@ -1,11 +1,17 @@
This docker images is used for testing Chrome, Firefox, WebKitGTK and running
other tasks on Taskcluster. When any of the files in this directory change, the
images must be updated as well. To do this, assuming you have docker installed:
images must be updated as well. Doing this requires you be part of the
'webplatformtests' organization on Docker Hub; ping @Hexcles or @stephenmcgruer
if you are not a member.
In this directory, run the following, where `<tag>` is of the form
`webplatformtests/wpt:{current-version + 0.01}`:
In this directory, run
```sh
# --pull forces Docker to get the newest base image.
docker build --pull -t <tag> .
docker push <tag>
```
Then update `.taskcluster.yml` in the top-level directory to point to the new
image you have uploaded.