Barbican install from source incorrectly places config

The barbican base Dockerfile is placing barbican.conf in
/etc/barbican/barbican/barbican.conf. It should be in
/etc/barbican/barbican.conf.

Change-Id: I4efc040aa0b17da6cfd3bc43a1079ff45ddc3e49
Co-Authored-By: Ian Main <imain@redhat.com>
Closes-Bug: #1484668
This commit is contained in:
Ryan Hallisey 2015-08-13 15:52:28 -04:00
parent fa9492e6c6
commit 24d7c2bed9

View File

@ -10,7 +10,7 @@ RUN cd /barbican \
&& pip install -r requirements.txt \
&& pip install /barbican \
&& mkdir /etc/barbican /var/log/barbican \
&& cp -r /barbican/etc/* /etc/barbican \
&& cp -r /barbican/etc/* /etc/ \
&& rm -rf /root/.cache
COPY ./start.sh /start.sh