Dockerfile
1 FROM ubuntu:focal 2 3 ENV DEBIAN_FRONTEND=noninteractive 4 5 RUN apt-get update 6 7 RUN apt-get install -yq --no-install-suggests --no-install-recommends \ 8 software-properties-common build-essential libcap-dev libffi-dev \ 9 libssl-dev python-all-dev python-setuptools \ 10 python3-dev python3-pip python3.9 python3.9-dev python3.9-venv \ 11 language-pack-en qt5dxcb-plugin tor xvfb 12 13 RUN python3.9 -m pip install --upgrade pip tox virtualenv 14 15 ADD . . 16 17 CMD .buildbot/tox-focal/test.sh