X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=utils%2Fdocker%2FDockerfile;h=25d53379396083c687909a8a2c9f3ec1e7394f7f;hb=832a0b8d97acd10b5a259d42db9e1bf56f1b4afd;hp=eac132c2d586a2bb5c1c1f2ad709909ed09c0646;hpb=e261467f32cd8ce6ad524b874d156a084859f3f0;p=osm%2Fvim-emu.git diff --git a/utils/docker/Dockerfile b/utils/docker/Dockerfile index eac132c..25d5337 100755 --- a/utils/docker/Dockerfile +++ b/utils/docker/Dockerfile @@ -25,22 +25,23 @@ # partner consortium (www.sonata-nfv.eu). FROM ubuntu:trusty -MAINTAINER steven.vanrossem@intec.ugent.be ENV SON_EMU_IN_DOCKER 1 RUN apt-get clean RUN apt-get update \ - && apt-get install -y git aptitude + && apt-get install -y git aptitude build-essential python-setuptools python-dev software-properties-common # install containernet -RUN apt-get install -y curl python-pip +RUN apt-get install -y curl iptables && \ + curl https://bootstrap.pypa.io/get-pip.py | python2 + # install docker RUN curl -fsSL https://get.docker.com/gpg | apt-key add - RUN curl -fsSL https://get.docker.com/ | sh -RUN pip install -U urllib3 setuptools pyparsing docker +RUN pip install -U urllib3 setuptools pyparsing docker python-iptables WORKDIR / RUN git clone https://github.com/containernet/containernet.git RUN containernet/util/install.sh