FROM python:3.9.1-buster AS base RUN apt-get update; apt-get install --yes coreutils RUN git clone https://github.com/altendky/ssst WORKDIR ssst RUN pip install pip==21.1.3 setuptools==57.1.0 wheel==0.36.2 RUN pip freeze --all FROM base AS succeed RUN git checkout 1e23bf26a47b48d714ae643f5d8af95394172464 RUN timeout 120 pip install .[pyside2]; true FROM base AS fail RUN git checkout 9063449c61ca4e6942508b2fc343ba7585539f99 RUN timeout 120 pip install .[pyside2]; true FROM base AS master RUN python -m pip install -U "pip @ https://github.com/pypa/pip/archive/f37fc4c3e80acea52444ec34db3bdfffab9d9618.zip" RUN git checkout 9063449c61ca4e6942508b2fc343ba7585539f99 RUN timeout 120 pip install .[pyside2]; true