From 1bb038ca72c15506efca148f8ce91aad43fe7ca5 Mon Sep 17 00:00:00 2001 From: Haibo Lin Date: Tue, 17 Aug 2021 10:08:35 +0800 Subject: [PATCH] Install missing deps in ci image tests requiring libmodulemd are skipped due to missing deps and this patch could fix the issue. Signed-off-by: Haibo Lin --- tests/Dockerfile-test | 2 ++ tests/Dockerfile-test-py2 | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/Dockerfile-test b/tests/Dockerfile-test index 43b4191d..61c99a96 100644 --- a/tests/Dockerfile-test +++ b/tests/Dockerfile-test @@ -7,10 +7,12 @@ LABEL \ RUN dnf -y update && dnf -y install \ findutils \ + libmodulemd \ git \ koji \ make \ python3-createrepo_c \ + python3-gobject-base \ python3-tox \ python3-urlgrabber \ && dnf clean all diff --git a/tests/Dockerfile-test-py2 b/tests/Dockerfile-test-py2 index 1e41be20..84ce1f99 100644 --- a/tests/Dockerfile-test-py2 +++ b/tests/Dockerfile-test-py2 @@ -5,13 +5,15 @@ LABEL \ vendor="Pungi developers" \ license="MIT" -RUN yum -y update && yum -y install \ +RUN yum -y update && yum -y install epel-release && yum -y install \ git \ + libmodulemd2 \ make \ python3 \ + python-createrepo_c \ + python-gobject-base \ python-gssapi \ python-libcomps \ - python-createrepo_c \ pykickstart \ && yum clean all