diff --git a/docker/tempest/Dockerfile.j2 b/docker/tempest/Dockerfile.j2
new file mode 100644
index 0000000000000000000000000000000000000000..f8330f217dd8edd88963597fdfafa4f72b4fe6ae
--- /dev/null
+++ b/docker/tempest/Dockerfile.j2
@@ -0,0 +1,21 @@
+FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
+MAINTAINER {{ maintainer }}
+
+{% if install_type == 'binary' %}
+    {% if base_distro in ['fedora', 'centos', 'oraclelinux', 'rhel'] %}
+
+RUN yum -y install \
+        openstack-tempest \
+    && yum clean all
+
+    {% endif %}
+{% elif install_type == 'source' %}
+
+ADD tempest-archive /tempest-source
+RUN ln -s tempest-source/* tempest \
+    && pip --no-cache-dir install -c requirements/upper-constraints.txt /tempest \
+    && mkdir -p /etc/tempest /var/log/tempest /etc/tempest/tempest_lock
+
+{% endif %}
+
+{{ include_footer }}
diff --git a/etc/kolla/kolla-build.conf b/etc/kolla/kolla-build.conf
index 6368924f3a23907157bcc54e66292f76d19ecf8f..baaa29ff9629f3589d803eb05856b66ae9ab33f4 100644
--- a/etc/kolla/kolla-build.conf
+++ b/etc/kolla/kolla-build.conf
@@ -142,6 +142,10 @@ location = http://github.com/kanaka/noVNC/tarball/v0.5.1
 type = url
 location = http://tarballs.openstack.org/swift/swift-master.tar.gz
 
+[tempest]
+type = url
+location = http://tarballs.openstack.org/tempest/tempest-master.tar.gz
+
 [zaqar]
 type = url
 location = http://tarballs.openstack.org/zaqar/zaqar-master.tar.gz