c1b75765f8
See Iccb4e99f8e4b6659a19c1817d0f4c697824af25c for context. Change-Id: I36de9a5c52ac265d0fb54ba7d540048aedf33fde Partial-Bug: #150530
15 lines
512 B
Django/Jinja
15 lines
512 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 -c requirements/upper-constraints.txt /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 %}
|