debian-koji/devtools/containers/Dockerfile.centos8
Jana Cupova ba612e1e90 Remove rpm-py-installer, update test docs and update Dockerfiles
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
2024-01-30 12:44:07 +01:00

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