From 3bef1188796837ed963f98abafb42902cea09a88 Mon Sep 17 00:00:00 2001 From: Andrii Ostapenko Date: Tue, 13 Apr 2021 12:03:51 -0500 Subject: [PATCH] Fix vbmc and tempest images Change-Id: Ifbc237550bc1dd959522bf550439858d3a1fa5b6 Signed-off-by: Andrii Ostapenko --- tempest/Dockerfile.ubuntu_bionic | 1 + vbmc/Dockerfile.centos_7 | 1 + 2 files changed, 2 insertions(+) diff --git a/tempest/Dockerfile.ubuntu_bionic b/tempest/Dockerfile.ubuntu_bionic index 0935c3e6..b4c0564a 100644 --- a/tempest/Dockerfile.ubuntu_bionic +++ b/tempest/Dockerfile.ubuntu_bionic @@ -12,6 +12,7 @@ RUN set -ex ;\ python3-pip \ libssl-dev \ git ;\ + pip3 install -U pip ;\ git clone https://git.openstack.org/openstack/tempest ;\ git clone https://git.openstack.org/openstack/cinder-tempest-plugin ;\ git clone https://git.openstack.org/openstack/heat-tempest-plugin ;\ diff --git a/vbmc/Dockerfile.centos_7 b/vbmc/Dockerfile.centos_7 index f9a72930..9bd92610 100644 --- a/vbmc/Dockerfile.centos_7 +++ b/vbmc/Dockerfile.centos_7 @@ -27,6 +27,7 @@ RUN set -ex ;\ python3-devel \ python3-pip \ qemu-kvm ;\ + pip3 install -U pip ;\ yum -y group install \ "Development Tools" ;\ yum clean all ;\