kolla/docker/heat/heat-api/Dockerfile
Steven Dake d30f69bc83 Port to icehouse
This represents making build-docker-images --release build
with the icehouse tag and causes docker-compsoe to pull from
the icehouse tag.

Partially-implements: blueprint port-kilo

Change-Id: I66b2c39abc55c0f47152dd90e696fc46b9c58f50
2015-05-06 09:58:43 -07:00

15 lines
401 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
ADD ./start.sh /start.sh
ADD ./check.sh /check.sh
CMD ["/start.sh"]