dockerfiles: enable Centos 8 PowerTools

ninja is included in the CentOS PowerTools repository.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Paolo Bonzini 2020-10-14 07:12:37 -04:00
parent 1e6e616dc2
commit f2f984a3b3
1 changed files with 3 additions and 1 deletions

View File

@ -28,5 +28,7 @@ ENV PACKAGES \
tar \
zlib-devel
RUN dnf install -y $PACKAGES
RUN dnf install -y dnf-plugins-core && \
dnf config-manager --set-enabled PowerTools && \
dnf install -y $PACKAGES
RUN rpm -q $PACKAGES | sort > /packages.txt