Remove rpm-py-installer from requirements Check duplicite and unused packages in Dockerfiles and test-requirements Update docs about unit tests. Fixes: https://pagure.io/koji/issue/3868
14 lines
375 B
Text
14 lines
375 B
Text
FROM quay.io/centos/centos:stream8
|
|
|
|
RUN \
|
|
dnf -y update --nodocs --setopt=install_weak_deps=False && \
|
|
dnf install -y --nodocs --setopt=install_weak_deps=False epel-release && \
|
|
dnf install -y --nodocs --setopt=install_weak_deps=False \
|
|
gcc \
|
|
glibc-langpack-en \
|
|
krb5-devel \
|
|
python3-devel \
|
|
python3-librepo \
|
|
python3-tox \
|
|
rpm-build && \
|
|
dnf clean all
|