* Both api and engine start up without error, but can't test properly until Horizon is fixed (bug #1482196) * These are source installs are there no RPMs available for Murano that I can find. * Also requires a plugin for horizon that will be made as a separate commit Co-Authored-By: Mick Thompson <michael.a.thompson@oracle.com> Implements: blueprint enable-murano-container Change-Id: Ia46985b21bb5f6d7690501e7199800c8c7fcb51f
16 lines
458 B
Docker
16 lines
458 B
Docker
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%%
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
ADD ./murano.tar /
|
|
RUN ln -s /murano-* /murano
|
|
|
|
RUN cd /murano \
|
|
&& pip install -r requirements.txt \
|
|
&& pip install /murano \
|
|
&& mkdir /etc/murano \
|
|
&& cd /murano \
|
|
&& tox -e genconfig \
|
|
&& cp -r etc/murano/* /etc/murano/ \
|
|
&& cp etc/murano/murano.conf.sample /etc/murano/murano.conf \
|
|
&& rm -rf /root/.cache
|