Tidy up a bit

This commit is contained in:
2025-01-14 01:59:18 -05:00
parent e0a98b668e
commit ab7381f0ca
5 changed files with 7 additions and 7 deletions

14
docker/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"]