mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-07-20 07:56:02 +00:00
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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user