Change-Id: I33cf4afbb532c6268bdc2017211ea78733a42fd7 Partially-implements: blueprint remove-config-internal
14 lines
380 B
Docker
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
|