Install python3.8 for qt5 test

This commit is contained in:
Dmitri Bogomolov 2021-11-18 20:49:59 +02:00
parent 643e47bf15
commit 4bd63f82d9
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13

View File

@ -22,13 +22,16 @@ RUN apt-get install -yq --no-install-suggests --no-install-recommends \
# Wine
# wget wine-stable winetricks mingw-w64 wine32 wine64
RUN apt-get install -yq python3.8 python3.8-dev python3.8-venv
# cleanup
RUN rm -rf /var/lib/apt/lists/*
RUN useradd -m -U builder
RUN python3 -m pip install wheel
RUN python3 -m pip install --upgrade virtualenv
RUN python3.8 -m pip install wheel
RUN python3.8 -m pip install --upgrade tox
RUN python3.8 -m pip install --upgrade virtualenv
# copy sources
COPY . /home/builder/src