Initial try on an action to build RPM packages
Some checks failed
Build docker image / build-and-publish (push) Failing after 37s

This commit is contained in:
Carlos Mogas da Silva 2024-12-03 18:33:26 +00:00
parent ff083951fd
commit aa810b33e8
4 changed files with 96 additions and 0 deletions

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM fedora:41
RUN dnf update -y && dnf upgrade -y; \
dnf install -y mock rpmdevtools
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]