Files
pgmon/docker/Dockerfile-rockylinux

22 lines
330 B
Plaintext
Raw Normal View History

2025-01-08 18:34:51 -05:00
# Dockerfile.rpm
2025-01-10 00:40:41 -05:00
ARG DISTRO=rockylinux
ARG RELEASE=9
FROM ${DISTRO}:${RELEASE}
2025-01-08 18:34:51 -05:00
2025-01-25 01:33:30 -05:00
ARG DISTRO
ARG RELEASE
2025-01-08 18:34:51 -05:00
RUN dnf install -y \
rpm-build \
make \
&& dnf clean all
2025-01-25 01:33:30 -05:00
RUN echo -e "#!/bin/bash\nmake actually-package-${DISTRO}-${RELEASE}" > /init.sh \
&& chmod 755 /init.sh
2025-01-08 18:34:51 -05:00
WORKDIR /src
2025-01-25 01:33:30 -05:00
CMD ["/bin/bash", "/init.sh"]