X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fvim-emu.git;a=blobdiff_plain;f=Dockerfile;h=cccecdf4493c828ab2befa455399ab1485f9a1ea;hp=856d796fb6bd83f833a591da4adfece295a0e4c9;hb=83d22499d7cfa78a67e375718b4b1bd60e06fa2e;hpb=9db5720aee118d414d1a4f84780b16f28bc557f7 diff --git a/Dockerfile b/Dockerfile index 856d796..cccecdf 100755 --- a/Dockerfile +++ b/Dockerfile @@ -27,6 +27,7 @@ FROM ubuntu:xenial ENV SON_EMU_IN_DOCKER 1 +ENV PIP_DEFAULT_TIMEOUT=100 # install required packages RUN apt-get clean @@ -57,6 +58,9 @@ RUN ansible-playbook -i "localhost," -c local --skip-tags "notindocker" install. WORKDIR /son-emu RUN python setup.py develop +# Hotfix: https://github.com/pytest-dev/pytest/issues/4770 +RUN pip2 install "more-itertools<=5.0.0" + # Important: This entrypoint is required to start the OVS service ENTRYPOINT ["/son-emu/utils/docker/entrypoint.sh"] CMD ["python", "examples/default_single_dc_topology.py"]