Add missing dependencies

This commit is contained in:
2025-01-14 01:54:35 -05:00
parent 7b58b4a3ed
commit e0a98b668e
7 changed files with 58 additions and 6 deletions

14
Dockerfile-rpm Normal file
View File

@@ -0,0 +1,14 @@
# Dockerfile.rpm
ARG DISTRO=rockylinux
ARG RELEASE=9
FROM ${DISTRO}:${RELEASE}
RUN dnf install -y \
rpm-build \
make \
&& dnf clean all
WORKDIR /src
CMD ["make", "package-rpm"]