this repo has no description
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