![Sam Yaple](/assets/img/avatar_default.png)
Change-Id: I33cf4afbb532c6268bdc2017211ea78733a42fd7 Partially-implements: blueprint remove-config-internal
16 lines
464 B
Docker
16 lines
464 B
Docker
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%heat-base:%%KOLLA_TAG%%
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
RUN yum -y install \
|
|
# until http://pkgs.fedoraproject.org/cgit/openstack-heat.git/tree/openstack-heat.spec#n248 \
|
|
# is updated, the clients must remain here: \
|
|
python-barbicanclient \
|
|
python-zaqarclient \
|
|
openstack-heat-engine \
|
|
&& yum clean all
|
|
|
|
COPY start.sh /
|
|
COPY config-external.sh /opt/kolla/
|
|
|
|
CMD ["/start.sh"]
|