Make heat build from source in the templates

There was an error during docker-templates for heat.  I think
I copied keystone's example rather then looking at our from
source reference.

Change-Id: Id073ce0b0d9e72acb3b752f49a2b8cfcd5d51851
Partially Implements: blueprint docker-templates
This commit is contained in:
Steven Dake 2015-08-16 09:09:21 -07:00
parent 91026e78bf
commit 033d437bf9

View File

@ -23,9 +23,8 @@ RUN cd /heat \
&& useradd --user-group heat \
&& pip install -r requirements.txt \
&& pip install /heat \
&& mkdir /etc/heat /var/www/cgi-bin/heat \
&& cp -r /heat/etc/* /etc/heat/ \
&& cp -a httpd/heat.py /var/www/cgi-bin/heat/admin \
&& cp -a httpd/heat.py /var/www/cgi-bin/heat/main
&& mkdir /etc/heat /var/log/heat \
&& cp -r /heat/etc/heat/* /etc/heat/ \
&& rm -rf /root/.cache
{% endif %}