From 83717e6401b12ee7667ccc4c72455897e41348da Mon Sep 17 00:00:00 2001 From: Ian Main <imain@redhat.com> Date: Thu, 13 Aug 2015 15:12:23 -0400 Subject: [PATCH] Fix heat configuration. This was copying the files into /etc/heat/heat (there's a heat/ dir in etc/ that was copied). This fixes it. Closes-Bug: #1484649 Co-Authored-By: Ryan Hallisey <rhallise@redhat.com> Change-Id: I84b9b38edbf14d176782b8efcce95a41501d758b --- docker/centos/source/heat/heat-base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/centos/source/heat/heat-base/Dockerfile b/docker/centos/source/heat/heat-base/Dockerfile index 4ef6f222c8..210ac82940 100644 --- a/docker/centos/source/heat/heat-base/Dockerfile +++ b/docker/centos/source/heat/heat-base/Dockerfile @@ -9,5 +9,5 @@ RUN cd /heat \ && pip install -r requirements.txt \ && pip install /heat \ && mkdir /etc/heat /var/log/heat \ - && cp -r /heat/etc/* /etc/heat/ \ + && cp -r /heat/etc/* /etc/ \ && rm -rf /root/.cache