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-deb Normal file
View File

@@ -0,0 +1,14 @@
ARG DISTRO=ubuntu
ARG RELEASE=noble
FROM ${DISTRO}:${RELEASE}
RUN apt-get update && apt-get install -y \
dpkg-dev \
build-essential \
fakeroot \
make \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /src
CMD ["make", "package-deb"]

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

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"]