blob: 966f45b85e6c4b20ba564da6bb95780db570ac7a [file] [log] [blame]
A.R Karthick490f51f2016-06-09 21:29:13 -07001FROM ubuntu:14.04
2MAINTAINER chetan@ciena.com
3RUN apt-get update && \
4 apt-get install -y git git-core autoconf automake autotools-dev pkg-config \
5 make gcc g++ libtool libc6-dev cmake libpcap-dev libxerces-c2-dev \
6 unzip libpcre3-dev flex bison libboost-dev \
7 python python-pip python-setuptools python-scapy tcpdump doxygen doxypy wget \
8 openvswitch-common openvswitch-switch \
A R Karthick07608ef2016-08-23 16:51:19 -07009 python-twisted python-sqlite sqlite3 python-pexpect telnet arping isc-dhcp-server \
10 python-paramiko python-maas-client
A.R Karthick490f51f2016-06-09 21:29:13 -070011RUN easy_install nose
12RUN mkdir -p /root/ovs
13WORKDIR /root
14RUN wget http://openvswitch.org/releases/openvswitch-2.5.0.tar.gz -O /root/ovs/openvswitch-2.5.0.tar.gz && \
15(cd /root/ovs && tar zxpvf openvswitch-2.5.0.tar.gz && \
16 cd openvswitch-2.5.0 && \
17 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-ssl && make && make install)
18RUN service openvswitch-switch restart || /bin/true
A.R Karthickec5b72a2016-11-03 09:53:07 -070019RUN pip install scapy==2.3.2 scapy-ssl_tls==1.2.2 monotonic configObj docker-py pyyaml nsenter pyroute2 netaddr python-daemon
A.R Karthick490f51f2016-06-09 21:29:13 -070020RUN mv /usr/sbin/tcpdump /sbin/
21RUN ln -sf /sbin/tcpdump /usr/sbin/tcpdump
A R Karthickf4999472016-07-01 16:42:13 -070022RUN mv /usr/sbin/dhcpd /sbin/
23RUN ln -sf /sbin/dhcpd /usr/sbin/dhcpd
A.R Karthick490f51f2016-06-09 21:29:13 -070024WORKDIR /root
25RUN wget -nc http://de.archive.ubuntu.com/ubuntu/pool/main/b/bison/bison_2.5.dfsg-2.1_amd64.deb \
26 http://de.archive.ubuntu.com/ubuntu/pool/main/b/bison/libbison-dev_2.5.dfsg-2.1_amd64.deb
27RUN sudo dpkg -i bison_2.5.dfsg-2.1_amd64.deb libbison-dev_2.5.dfsg-2.1_amd64.deb
28RUN rm bison_2.5.dfsg-2.1_amd64.deb libbison-dev_2.5.dfsg-2.1_amd64.deb
29RUN wget -nc http://www.nbee.org/download/nbeesrc-jan-10-2013.zip && \
30 unzip nbeesrc-jan-10-2013.zip && \
31 cd nbeesrc-jan-10-2013/src && cmake . && make && \
32 cp ../bin/libn*.so /usr/local/lib && ldconfig && \
33 cp -R ../include/* /usr/include/
34WORKDIR /root
35RUN git clone https://github.com/CPqD/ofsoftswitch13.git && \
36 cd ofsoftswitch13 && \
37 ./boot.sh && \
38 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-ssl && \
39 make && make install
40CMD ["/bin/bash"]