Merge "Tempest ubuntu binary container"

This commit is contained in:
Jenkins 2016-02-23 12:50:06 +00:00 committed by Gerrit Code Review
commit 5bf932c7b8

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