diff --git a/docker_templates/gnocchi/gnocchi-api/Dockerfile.j2 b/docker_templates/gnocchi/gnocchi-api/Dockerfile.j2
index 93d8214764536656d3150fe1a9952409bd088e15..9bb144ed7164acf8a9ff4af60ef8d04c67075f6d 100644
--- a/docker_templates/gnocchi/gnocchi-api/Dockerfile.j2
+++ b/docker_templates/gnocchi/gnocchi-api/Dockerfile.j2
@@ -4,9 +4,10 @@ MAINTAINER Kolla Project (https://launchpad.net/kolla)
 {% if install_type == 'binary' %}
     {% if base_distro in ['fedora', 'centos', 'oraclelinux'] %}
 
-RUN yum install -y openstack-gnocchi-api \
-    openstack-gnocchi-carbonara \
-    openstack-gnocchi-indexer-sqlalchemy \
+RUN yum install -y \
+        openstack-gnocchi-api \
+        openstack-gnocchi-carbonara \
+        openstack-gnocchi-indexer-sqlalchemy \
     && yum clean all
 
     {% endif %}
diff --git a/docker_templates/gnocchi/gnocchi-base/Dockerfile.j2 b/docker_templates/gnocchi/gnocchi-base/Dockerfile.j2
index db82205244714eab964a08f7929873f814e0da48..49cf68efb91735d3ed8ad61eca75c99dec7181e6 100644
--- a/docker_templates/gnocchi/gnocchi-base/Dockerfile.j2
+++ b/docker_templates/gnocchi/gnocchi-base/Dockerfile.j2
@@ -2,13 +2,17 @@ FROM {{ namespace }}/{{ base_distro }}-{{ install_type }}-base:{{ tag }}
 MAINTAINER Kolla Project (https://launchpad.net/kolla)
 
 {% if install_type == 'binary' %}
-    {% if base_distro in ['ubuntu', 'debian'] %}
 
 RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
     && /bin/false
 
-    {% endif %}
 {% elif install_type == 'source' %}
+    {% if base_distro in ['ubuntu', 'debian'] %}
+
+RUN apt-get install -y --no-install-recommends libpq-dev \
+    && apt-get clean
+
+    {% endif %}
 
 ADD ./gnocchi.tar /
 RUN ln -s /gnocchi-* /gnocchi
@@ -16,9 +20,10 @@ RUN ln -s /gnocchi-* /gnocchi
 RUN cd /gnocchi \
     && useradd --user-group gnocchi \
     && pip install -r requirements.txt \
-    && pip install /gnocchi \
-    && mkdir /etc/gnocchi /var/log/gnocchi \
+    && pip install --install-option="--install-scripts=/usr/bin" /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
 
 {% endif %}