From ce30cb7fadc7d659ef27d0c2147449b432a445a2 Mon Sep 17 00:00:00 2001 From: Tomas Kasparek Date: Tue, 14 Jan 2020 11:32:38 +0100 Subject: [PATCH] fix(listener): add dependencies needed for archive extraction --- listener/Dockerfile | 2 +- platform_mock/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/listener/Dockerfile b/listener/Dockerfile index 0e5dd9405..9c0a84ff5 100644 --- a/listener/Dockerfile +++ b/listener/Dockerfile @@ -4,7 +4,7 @@ ADD /scripts/generate_rpm_list.sh /generate_rpm_list.sh # make sure (redhat|centos|fedora)-release is always included in the manifest RUN /generate_rpm_list.sh | grep -v -E "^(redhat|centos|fedora)-release" > /tmp/base_rpm_list.txt -RUN microdnf install python3 which shadow-utils && microdnf clean all +RUN microdnf install python3 which shadow-utils file tar gzip && microdnf clean all WORKDIR /listener diff --git a/platform_mock/Dockerfile b/platform_mock/Dockerfile index 718aac1a2..3ae1d207d 100644 --- a/platform_mock/Dockerfile +++ b/platform_mock/Dockerfile @@ -1,6 +1,6 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal -RUN microdnf install python3 which java-openjdk-headless shadow-utils tar gzip && microdnf clean all +RUN microdnf install python3 which java-openjdk-headless shadow-utils tar gzip file && microdnf clean all WORKDIR /platform_mock