diff --git a/images/cluster-autoscaler/Dockerfile.rhel b/images/cluster-autoscaler/Dockerfile.rhel index 11ea52f87b97..f268a6ef0279 100644 --- a/images/cluster-autoscaler/Dockerfile.rhel +++ b/images/cluster-autoscaler/Dockerfile.rhel @@ -1,10 +1,10 @@ -FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.18 AS builder +FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.19 AS builder WORKDIR /go/src/k8s.io/autoscaler COPY . . WORKDIR /go/src/k8s.io/autoscaler/cluster-autoscaler RUN go build --tags clusterapi -o ./cluster-autoscaler . -FROM registry.ci.openshift.org/ocp/builder:rhel-9-base-openshift-4.18 +FROM registry.ci.openshift.org/ocp/4.19:base-rhel9 COPY --from=builder /go/src/k8s.io/autoscaler/cluster-autoscaler/cluster-autoscaler /usr/bin/ CMD /usr/bin/cluster-autoscaler LABEL summary="Cluster Autoscaler for OpenShift and Kubernetes"