473a0229d4
This package is correctly specified in the dependencies of the heat packaging now so removing it from the base package. Change-Id: I9028f41f5ee95b728c425235846b9825501b6f70 Implements: blueprint rhel-based-image-support
15 lines
474 B
Django/Jinja
15 lines
474 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
{% if install_type == 'source' %}
|
|
|
|
ADD heat-base-archive /heat-base-source
|
|
RUN ln -s heat-base-source/* heat \
|
|
&& useradd --user-group heat \
|
|
&& pip --no-cache-dir install /heat \
|
|
&& mkdir -p /etc/heat /var/log/heat /home/heat \
|
|
&& cp -r /heat/etc/heat/* /etc/heat/ \
|
|
&& chown -R heat: /etc/heat /var/log/heat /home/heat
|
|
|
|
{% endif %}
|