Taskcluster: install packages for Python 3 in Docker tasks

This commit is contained in:
Simon Sapin 2019-11-14 17:12:06 +01:00 committed by marmeladema
parent 64e9c0ee23
commit 2bacf69d15

View file

@ -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 \
#