From be722fd9489ab54e026d3f397ebd80c0ffa6f347 Mon Sep 17 00:00:00 2001 From: Robb Hamilton Date: Wed, 8 Apr 2026 08:30:58 -0400 Subject: [PATCH] NOJIRA: Update Dockerfile.dev to use latest base images Update Dockerfile.dev to use the current base images (4.22 with Go 1.25) to match the main Dockerfile. This ensures consistency across build environments. Co-Authored-By: Claude Sonnet 4.5 --- Dockerfile.dev | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.dev b/Dockerfile.dev index ebac7b0fb05..c3f15b71725 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,11 +1,11 @@ # Dockerfile to build console image from pre-built front end. -FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.20 AS build +FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.25-openshift-4.22 AS build RUN mkdir -p /go/src/github.com/openshift/console/ ADD . /go/src/github.com/openshift/console/ WORKDIR /go/src/github.com/openshift/console/ RUN ./build-backend.sh -FROM registry.ci.openshift.org/ocp/4.20:base-rhel9 +FROM registry.ci.openshift.org/ocp/builder:rhel-9-base-nodejs-openshift-4.22 COPY --from=build /go/src/github.com/openshift/console/bin/bridge /opt/bridge/bin/bridge COPY ./frontend/public/dist /opt/bridge/static COPY ./pkg/graphql/schema.graphql /pkg/graphql/schema.graphql