You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
541 B
Docker
19 lines
541 B
Docker
FROM fedora:23
|
|
MAINTAINER Ton Ngo "ton@us.ibm.com"
|
|
WORKDIR /
|
|
RUN dnf -y install openvswitch \
|
|
openstack-neutron-ml2 \
|
|
openstack-neutron-openvswitch \
|
|
bridge-utils \
|
|
git \
|
|
&& dnf clean all
|
|
RUN cd /opt \
|
|
&& git clone https://git.openstack.org/openstack/neutron \
|
|
&& cp neutron/etc/policy.json /etc/neutron/. \
|
|
&& rm -rf neutron \
|
|
&& dnf -y remove git
|
|
VOLUME /var/run/openvswitch
|
|
ADD run_openvswitch_neutron.sh /usr/bin/run_openvswitch_neutron.sh
|
|
|
|
CMD ["/usr/bin/run_openvswitch_neutron.sh"]
|