rpm-build/Dockerfile

11 lines
193 B
Text
Raw Normal View History

FROM fedora:41
RUN dnf update -y && dnf upgrade -y; \
2024-12-04 00:14:23 +00:00
dnf install -y mock rpmdevtools; \
dnf clean all
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]