97c18df507
A change merged in the base allows for Centos and Ubuntu to install all python things to the same locations. This updates the source section to reflect that change. Change-Id: I37132d763e4022ebd177a33696b08290cf20ad54 Partially-Implements: blueprint install-from-ubuntu
34 lines
976 B
Django/Jinja
34 lines
976 B
Django/Jinja
FROM {{ namespace }}/{{ base_distro }}-{{ install_type }}-base:{{ tag }}
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['fedora', 'centos', 'oraclelinux'] %}
|
|
|
|
# until packaging is fixed, all of this is required
|
|
# api: policy
|
|
# conductor:MySQL-python
|
|
RUN yum -y install \
|
|
python-oslo-log \
|
|
python-oslo-concurrency \
|
|
python-oslo-policy \
|
|
MySQL-python \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
|
|
&& /bin/false
|
|
|
|
{% endif %}
|
|
{% elif install_type == 'source' %}
|
|
|
|
ADD ironic.tar /
|
|
RUN ln -s /ironic-* ironic \
|
|
&& useradd --user-group ironic \
|
|
&& pip --no-cache-dir install /ironic \
|
|
&& mkdir -p /etc/ironic /var/log/ironic /home/ironic \
|
|
&& cp -r /ironic/etc/* /etc/ironic/ \
|
|
&& chown -R ironic: /etc/ironic /var/log/ironic /home/ironic
|
|
|
|
{% endif %}
|