Dockerfile
1 FROM ubuntu:jammy 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-is-python3 python-setuptools \ 10 python3-dev python3-pip language-pack-en qt5dxcb-plugin tor xvfb 11 12 RUN pip install tox 13 14 ADD . . 15 16 CMD .buildbot/tox-jammy/test.sh