2f2bb366e0
Adds neutron-server components of the neutron container set. Partially Implements: blueprint compute-operation-neutron Change-Id: I63525ae85f4ead4e010cdb9b6bc8059bb9d252e7
14 lines
318 B
Docker
14 lines
318 B
Docker
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%neutron-base
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
#Install required packages
|
|
RUN yum install -y openstack-neutron \
|
|
python-neutronclient \
|
|
which \
|
|
&& yum clean all
|
|
|
|
ADD ./start.sh /start.sh
|
|
ADD ./check.sh /check.sh
|
|
|
|
CMD ["/start.sh"]
|