Tempest ubuntu binary container

Change-Id: Iaa65a0f84a9d12ec7d658c560c3eb884f3f67d35
Partially-Implements: blueprint binary-ubuntu
This commit is contained in:
MD NADEEM 2016-02-08 11:42:02 +05:30 committed by MD NADEEM
parent 33fd50e603
commit 898188a5b6
1 changed files with 6 additions and 0 deletions

View File

@ -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' %}