diff --git a/Dockerfile b/Dockerfile index 213b8c2..2cd6ba5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,17 @@ FROM python:3.5 -MAINTAINER Ilya Shakhat +LABEL maintainer "Ilya Shakhat " + +RUN echo "deb http://httpredir.debian.org/debian jessie non-free" >> /etc/apt/sources.list \ + && apt-get update \ + && apt-get -y install --no-install-recommends \ + iperf \ + iperf3 \ + netperf \ + python-openstackclient \ + && apt-get clean ADD . /opt/shaker/ -RUN pip install -r /opt/shaker/requirements.txt +RUN pip install -r /opt/shaker/requirements.txt flent WORKDIR /opt/shaker/ RUN python setup.py install