51e20db747
Change-Id: I33cf4afbb532c6268bdc2017211ea78733a42fd7 Partially-implements: blueprint remove-config-internal
15 lines
403 B
Docker
15 lines
403 B
Docker
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%heat-base:%%KOLLA_TAG%%
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
# TODO: configure cfn and cloudwatch
|
|
# TODO: remove python-openstackclient once crux feature is added in start.sh
|
|
RUN yum -y install \
|
|
openstack-heat-api \
|
|
python-openstackclient \
|
|
&& yum clean all
|
|
|
|
COPY start.sh /
|
|
COPY config-external.sh /opt/kolla/
|
|
|
|
CMD ["/start.sh"]
|