From 898188a5b674429b02ca518e0aeecaabfafa5d79 Mon Sep 17 00:00:00 2001 From: MD NADEEM Date: Mon, 8 Feb 2016 11:42:02 +0530 Subject: [PATCH] Tempest ubuntu binary container Change-Id: Iaa65a0f84a9d12ec7d658c560c3eb884f3f67d35 Partially-Implements: blueprint binary-ubuntu --- docker/tempest/Dockerfile.j2 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docker/tempest/Dockerfile.j2 b/docker/tempest/Dockerfile.j2 index b812e1a18f..b259a10543 100644 --- a/docker/tempest/Dockerfile.j2 +++ b/docker/tempest/Dockerfile.j2 @@ -8,6 +8,12 @@ RUN yum -y install \ openstack-tempest \ && yum clean all + {% elif base_distro in ['ubuntu'] %} + +RUN apt-get install -y --no-install-recommends \ + tempest \ + && apt-get clean + {% endif %} {% elif install_type == 'source' %}