986edf4a97
When using ';' this can allow the previous command to fail and while the docker build proceeds without realizing a command failed. Switching to '&&' allows the exit code to make it to the docker build command and the build to fail appropriately. Change-Id: Idd0991ed4549542bb10d27da1a0a025d0503b6c1
15 lines
387 B
Docker
15 lines
387 B
Docker
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%heat-base
|
|
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"]
|