sonic-buildimage/dockers/docker-ptf/Dockerfile.j2

112 lines
3.4 KiB
Docker
Raw Normal View History

2016-08-04 12:39:33 -05:00
FROM debian:jessie
MAINTAINER Pavel Shirshov
## Copy dependencies
COPY \
{% for deb in docker_ptf_debs.split(' ') -%}
debs/{{ deb }}{{' '}}
{%- endfor -%}
debs/
2016-08-04 12:39:33 -05:00
## Make apt-get non-interactive
ENV DEBIAN_FRONTEND=noninteractive
## Set the apt source, update package cache and install necessary packages
2016-09-09 19:53:41 -05:00
RUN sed --in-place 's/httpredir.debian.org/debian-archive.trafficmanager.net/' /etc/apt/sources.list \
&& apt-get update \
&& apt-get upgrade -y \
2016-08-04 12:39:33 -05:00
&& apt-get dist-upgrade -y \
2016-09-09 19:53:41 -05:00
&& apt-get install -y \
2016-08-04 12:39:33 -05:00
openssh-server \
vim \
net-tools \
traceroute \
lsof \
tcpdump \
unzip \
pkg-config \
binutils \
net-tools \
build-essential \
libssl-dev \
libffi-dev \
wget \
cmake \
2016-12-09 04:24:08 -06:00
libqt5core5a \
libqt5network5 \
less \
git \
iputils-ping \
hping3 \
curl \
tcpdump \
python \
python-dev \
python-scapy
2016-12-09 04:24:08 -06:00
RUN dpkg -i \
{% for deb in docker_ptf_debs.split(' ') -%}
debs/{{ deb }}{{' '}}
{%- endfor %}
# Install all python modules from pypi. python-scapy is exception, ptf debian package requires python-scapy
2016-12-09 04:24:08 -06:00
RUN rm -rf /debs \
2016-08-04 12:39:33 -05:00
&& apt-get -y autoclean \
&& apt-get -y autoremove \
&& rm -rf /var/lib/apt/lists/* \
&& wget --https-only https://bootstrap.pypa.io/get-pip.py \
&& python get-pip.py \
&& rm -f get-pip.py \
&& pip install setuptools \
&& pip install supervisor \
&& pip install ipython==5.4.1 \
&& git clone https://github.com/p4lang/scapy-vxlan.git \
&& cd scapy-vxlan \
&& python setup.py install \
&& cd .. \
&& rm -fr scapy-vxlan \
2016-08-04 12:39:33 -05:00
&& wget https://github.com/nanomsg/nanomsg/archive/1.0.0.tar.gz \
&& tar xvfz 1.0.0.tar.gz \
&& cd nanomsg-1.0.0 \
&& mkdir -p build \
2016-09-09 19:53:41 -05:00
&& cd build \
&& cmake .. \
2016-08-04 12:39:33 -05:00
&& make install \
&& ldconfig \
2016-09-09 19:53:41 -05:00
&& cd ../.. \
2016-08-04 12:39:33 -05:00
&& rm -fr nanomsg-1.0.0 \
&& rm -f 1.0.0.tar.gz \
&& pip install cffi \
2016-08-04 12:39:33 -05:00
&& pip install nnpy \
&& pip install dpkt \
&& pip install ipaddress \
&& pip install pysubnettree \
&& pip install paramiko \
&& pip install flask \
&& pip install exabgp==3.4.17\
&& pip install pyaml \
2016-08-04 12:39:33 -05:00
&& mkdir -p /opt \
&& cd /opt \
&& wget https://raw.githubusercontent.com/p4lang/ptf/master/ptf_nn/ptf_nn_agent.py
## Adjust sshd settings
RUN mkdir /var/run/sshd \
&& echo 'root:root' | chpasswd \
&& sed -ri 's/^PermitRootLogin\s+.*/PermitRootLogin yes/' /etc/ssh/sshd_config \
&& sed -ri 's/UsePAM yes/#UsePAM yes/g' /etc/ssh/sshd_config \
&& sed -i '$aUseDNS no' /etc/ssh/sshd_config
2016-08-04 12:39:33 -05:00
COPY ["supervisord.conf", "/etc/supervisor/"]
COPY ["conf.d/supervisord.conf", "conf.d/sshd.conf", "conf.d/ptf_nn_agent.conf", "/etc/supervisor/conf.d/"]
# Move tcpdump into /usr/bin Otherwise it's impossible to run tcpdump due to a docker bug
RUN mv /usr/sbin/tcpdump /usr/bin/tcpdump
RUN ln -s /usr/bin/tcpdump /usr/sbin/tcpdump
RUN mkdir -p /var/log/supervisor
2016-08-04 12:39:33 -05:00
EXPOSE 22
ENTRYPOINT ["/usr/local/bin/supervisord", "-c", "/etc/supervisor/supervisord.conf"]