Unify Centos and Ubuntu Source Install - Murano

A change merged in the base allows for Centos and Ubuntu to install
all python things to the same locations. This updates the source
section to reflect that change.

Change-Id: I7b3504874088bae76c9dcb429c8aa8e0fd307a8e
Partially-Implements: blueprint install-from-ubuntu
This commit is contained in:
Sam Yaple 2015-08-27 10:36:05 +00:00
parent eecf6581a4
commit 94664283aa

View File

@ -9,15 +9,11 @@ RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
{% elif install_type == 'source' %}
ADD murano.tar /
RUN ln -s /murano-* /murano
RUN cd /murano \
RUN ln -s /murano-* murano \
&& useradd --user-group murano \
&& pip install -r requirements.txt \
&& pip install --install-option="--install-scripts=/usr/bin" /murano \
&& pip --no-cache-dir install /murano \
&& mkdir -p /etc/murano /var/log/murano /home/murano \
&& cp -r /murano/etc/murano/* /etc/murano/ \
&& chown -R murano: /etc/murano /var/log/murano /home/murano \
&& rm -rf /root/.cache
&& chown -R murano: /etc/murano /var/log/murano /home/murano
{% endif %}