Files
kolla-ansible/docker/centos/source/heat/heat-base/Dockerfile
Sam Yaple 51e20db747 Remove config-internal for Heat
Change-Id: I33cf4afbb532c6268bdc2017211ea78733a42fd7
Partially-implements: blueprint remove-config-internal
2015-08-07 18:53:38 +00:00

14 lines
380 B
Docker

FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%%
MAINTAINER Kolla Project (https://launchpad.net/kolla)
ADD ./heat.tar /
RUN ln -s /heat-* /heat
RUN cd /heat \
&& useradd --user-group heat \
&& pip install -r requirements.txt \
&& pip install /heat \
&& mkdir /etc/heat /var/log/heat \
&& cp -r /heat/etc/* /etc/heat/ \
&& rm -rf /root/.cache