this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at fixPythonPipStalling 21 lines 474 B view raw
1ARG OS=fedora:37 2FROM ${OS} 3 4SHELL ["bash", "-euxvc"] 5 6RUN dnf install -y rpm-build dnf-utils rpmdevtools git; \ 7 source /etc/os-release; \ 8 dnf install -y https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-${VERSION_ID}.noarch.rpm; \ 9 dnf clean all 10 11COPY SPECS/darling.spec /darling.spec 12 13# Bootstrap 14RUN yum-builddep -y /darling.spec; \ 15 dnf clean all 16 17RUN rm /darling.spec 18 19RUN mkdir -p /root/rpmbuild/SOURCES 20 21CMD bash -xv /src/rpm/build.bsh