
* Enable some extra repos for oraclelinux in the base template. * Disable magnum binary builds for oraclelinux due to unavailable python-docker-py dependency Change-Id: Iaf8826dc0f9ff93a40e5ad3d1c0fd1fb6ef2e048 Closes-Bug: 1486636
33 lines
1.1 KiB
Django/Jinja
33 lines
1.1 KiB
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 ['centos'] %}
|
|
|
|
RUN curl https://copr.fedoraproject.org/coprs/sdake/openstack-magnum/repo/epel-7/sdake-openstack-magnum-epel-7.repo -o /etc/yum.repos.d/sdake-openstack-magnum-epel-7.repo
|
|
|
|
{% elif base_distro in ['fedora'] %}
|
|
|
|
RUN curl https://copr.fedoraproject.org/coprs/sdake/openstack-magnum/repo/fedora-22/sdake-openstack-magnum-fedora-22.repo -o /etc/yum.repos.d/sdake-openstack-magnum-f22.repo
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian', 'oraclelinux'] %}
|
|
|
|
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
|
|
&& /bin/false
|
|
|
|
{% endif %}
|
|
{% elif install_type == 'source' %}
|
|
|
|
ADD ./magnum.tar /
|
|
RUN ln -s /magnum-* /magnum
|
|
|
|
RUN cd /magnum \
|
|
&& useradd --user-group magnum \
|
|
&& pip install -r requirements.txt \
|
|
&& pip install /magnum \
|
|
&& mkdir /etc/magnum /var/log/magnum \
|
|
&& cp -r /magnum/etc/* /etc/magnum/ \
|
|
&& rm -rf /root/.cache
|
|
|
|
{% endif %}
|