Unify Centos and Ubuntu Source Install - Gnocchi

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: Id7c2160f63ad860168b4293a29c1db24f066fc3f
Partially-Implements: blueprint install-from-ubuntu
This commit is contained in:
Sam Yaple 2015-08-27 10:29:59 +00:00
parent eecf6581a4
commit 8594c78a0a

View File

@ -14,16 +14,12 @@ RUN apt-get install -y --no-install-recommends libpq-dev \
{% endif %}
ADD ./gnocchi.tar /
RUN ln -s /gnocchi-* /gnocchi
RUN cd /gnocchi \
ADD gnocchi.tar /
RUN ln -s /gnocchi-* gnocchi \
&& useradd --user-group gnocchi \
&& pip install -r requirements.txt \
&& pip install --install-option="--install-scripts=/usr/bin" /gnocchi \
&& pip --no-cache-dir install /gnocchi \
&& mkdir -p /etc/gnocchi /var/log/gnocchi /home/gnocchi \
&& cp -r /gnocchi/etc/* /etc/gnocchi/ \
&& chown -R gnocchi: /etc/gnocchi /var/log/gnocchi /home/gnocchi \
&& rm -rf /root/.cache
&& chown -R gnocchi: /etc/gnocchi /var/log/gnocchi /home/gnocchi
{% endif %}