diff --git a/docker/neutron/neutron-server/Dockerfile.j2 b/docker/neutron/neutron-server/Dockerfile.j2
index 5fcf47a783..65e698ad40 100644
--- a/docker/neutron/neutron-server/Dockerfile.j2
+++ b/docker/neutron/neutron-server/Dockerfile.j2
@@ -4,22 +4,10 @@ MAINTAINER Kolla Project (https://launchpad.net.kolla)
 {% if install_type == 'binary' %}
     {% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
 
-# Install required packages
-RUN yum install -y which \
-    && yum clean all
-
 # See bug: https://bugs.launchpad.net/kolla/+bug/1483667
 # TODO(SamYaple): Check in on this and remove once unneccesary
 RUN pip install oslo.messaging==2.2.0
 
-    {% endif %}
-{% elif install_type == 'source' %}
-    {% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
-
-#Install required packages
-RUN yum install -y which \
-    && yum clean all
-
     {% endif %}
 {% endif %}