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

15
Dockerfile-el7 Normal file
View File

@@ -0,0 +1,15 @@
# Dockerfile.rpm
ARG DISTRO=oraclelinux
ARG RELEASE=7
FROM ${DISTRO}:${RELEASE}
RUN yum install -y \
rpm-build \
make \
oracle-epel-release-el7 \
&& yum clean all
WORKDIR /src
CMD ["make", "package-rpm"]