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
12 lines
304 B
Text
12 lines
304 B
Text
FROM registry.fedoraproject.org/fedora:38
|
|
RUN \
|
|
dnf -y update --nodocs --setopt=install_weak_deps=False && \
|
|
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
|