This was prompt by the fact that `wget https://xenbits.xenproject.org`
fails with expired certificates, which turned out to be an expired
root certificates. Updating all packages fix the issue.
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
---
Notes:
v2:
- new patch, this replace a change in "Remove expired root certificates used to be used by let's encrypt"
automation/build/centos/7.dockerfile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/automation/build/centos/7.dockerfile b/automation/build/centos/7.dockerfile
index e688a4cece..f5264e02d9 100644
--- a/automation/build/centos/7.dockerfile
+++ b/automation/build/centos/7.dockerfile
@@ -15,7 +15,8 @@ RUN rpm --rebuilddb && \
rm -rf /var/cache/yum
# install Xen depends
-RUN yum -y install \
+RUN yum -y update \
+ && yum -y install \
gcc \
gcc-c++ \
ncurses-devel \
--
Anthony PERARD