Update to CentOS Stream 9 based on reviewer feedback

- Update BASEIMAGE to quay.io/centos/centos:stream9 for all architectures
- Update Dockerfile to use dnf (CentOS Stream 9 package manager)
- Update package name from /usr/bin/ps to procps-ng

Addresses reviewer feedback that CentOS 8 is also EOL.
CentOS Stream 9 provides ongoing updates and support.
This commit is contained in:
Michael
2025-09-01 08:37:07 +01:00
parent 73127eb86d
commit 9b47a096f4
2 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
linux/amd64=centos:8
linux/arm64=arm64v8/centos:8
linux/ppc64le=ppc64le/centos:8
linux/s390x=s390x/clefos:8
linux/amd64=quay.io/centos/centos:stream9
linux/arm64=quay.io/centos/centos:stream9
linux/ppc64le=quay.io/centos/centos:stream9
linux/s390x=quay.io/centos/centos:stream9

View File

@@ -16,7 +16,7 @@ ARG BASEIMAGE
FROM $BASEIMAGE
CROSS_BUILD_COPY qemu-QEMUARCH-static /usr/bin/
RUN yum -y install /usr/bin/ps nfs-utils && yum clean all
RUN dnf -y install procps-ng nfs-utils && dnf clean all
RUN mkdir -p /exports
ADD run_nfs.sh /usr/local/bin/
ADD index.html /tmp/index.html