From 2d6324576dc8ced22173fc678d1bf3fc39193c52 Mon Sep 17 00:00:00 2001 From: "red-hat-konflux[bot]" <126015336+red-hat-konflux[bot]@users.noreply.github.com> Date: Sat, 16 May 2026 16:46:48 +0000 Subject: [PATCH] chore(deps): update registry.redhat.io/ubi9/nodejs-20-minimal docker digest to 87f2eb0 Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> --- Containerfile.acm.konflux | 4 ++-- Containerfile.mce.konflux | 4 ++-- Dockerfile.mce.prow | 8 ++++---- Dockerfile.prow | 8 ++++---- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Containerfile.acm.konflux b/Containerfile.acm.konflux index 5932ebaaf36..a8db90c8e4a 100644 --- a/Containerfile.acm.konflux +++ b/Containerfile.acm.konflux @@ -1,4 +1,4 @@ -FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:8e253ccce2a7e8767d5ffeb6b82fcd1c0fc5abaea7a6d7f9c62dc83691b1de58 AS builder +FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:87f2eb0ce06e922a7629fa94fad62ed4e6be05931852b779269e0692282a099e AS builder USER root ENV NPM_CONFIG_NODEDIR=/usr @@ -16,7 +16,7 @@ RUN cd frontend && npm run build:plugin:acm # Remove build-time dependencies before packaging RUN cd backend && npm ci --omit=optional --only=production --unsafe-perm --ignore-scripts -FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:8e253ccce2a7e8767d5ffeb6b82fcd1c0fc5abaea7a6d7f9c62dc83691b1de58 +FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:87f2eb0ce06e922a7629fa94fad62ed4e6be05931852b779269e0692282a099e WORKDIR /app ENV NODE_ENV production diff --git a/Containerfile.mce.konflux b/Containerfile.mce.konflux index 5620ebd0d04..07d50bb4e68 100644 --- a/Containerfile.mce.konflux +++ b/Containerfile.mce.konflux @@ -1,4 +1,4 @@ -FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:8e253ccce2a7e8767d5ffeb6b82fcd1c0fc5abaea7a6d7f9c62dc83691b1de58 AS builder +FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:87f2eb0ce06e922a7629fa94fad62ed4e6be05931852b779269e0692282a099e AS builder USER root ENV NPM_CONFIG_NODEDIR=/usr @@ -16,7 +16,7 @@ RUN cd frontend && npm run build:plugin:mce # Remove build-time dependencies before packaging RUN cd backend && npm ci --omit=optional --only=production --unsafe-perm --ignore-scripts -FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:8e253ccce2a7e8767d5ffeb6b82fcd1c0fc5abaea7a6d7f9c62dc83691b1de58 +FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:87f2eb0ce06e922a7629fa94fad62ed4e6be05931852b779269e0692282a099e WORKDIR /app ENV NODE_ENV production diff --git a/Dockerfile.mce.prow b/Dockerfile.mce.prow index 8cb1aa2366d..a47cb73c360 100644 --- a/Dockerfile.mce.prow +++ b/Dockerfile.mce.prow @@ -1,12 +1,12 @@ # Copyright Contributors to the Open Cluster Management project -FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:8e253ccce2a7e8767d5ffeb6b82fcd1c0fc5abaea7a6d7f9c62dc83691b1de58 as dynamic-plugin +FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:87f2eb0ce06e922a7629fa94fad62ed4e6be05931852b779269e0692282a099e as dynamic-plugin WORKDIR /app/frontend COPY ./frontend . RUN npm ci --legacy-peer-deps RUN npm run build:plugin:mce -FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:8e253ccce2a7e8767d5ffeb6b82fcd1c0fc5abaea7a6d7f9c62dc83691b1de58 as backend +FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:87f2eb0ce06e922a7629fa94fad62ed4e6be05931852b779269e0692282a099e as backend WORKDIR /app/backend # Copy only package.json and package-lock.json so that the docker layer cache only changes if those change # This will cause the npm ci to only rerun if the package.json or package-lock.json changes @@ -15,12 +15,12 @@ RUN npm ci --omit=optional --ignore-scripts COPY ./backend . RUN npm run build -FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:8e253ccce2a7e8767d5ffeb6b82fcd1c0fc5abaea7a6d7f9c62dc83691b1de58 as production +FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:87f2eb0ce06e922a7629fa94fad62ed4e6be05931852b779269e0692282a099e as production WORKDIR /app/backend COPY ./backend/package-lock.json ./backend/package.json ./ RUN npm ci --omit=optional --only=production --ignore-scripts -FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:8e253ccce2a7e8767d5ffeb6b82fcd1c0fc5abaea7a6d7f9c62dc83691b1de58 +FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:87f2eb0ce06e922a7629fa94fad62ed4e6be05931852b779269e0692282a099e WORKDIR /app ENV NODE_ENV production COPY --from=production /app/backend/node_modules ./node_modules diff --git a/Dockerfile.prow b/Dockerfile.prow index 2eeaa4c682b..ff32d8d221f 100644 --- a/Dockerfile.prow +++ b/Dockerfile.prow @@ -1,12 +1,12 @@ # Copyright Contributors to the Open Cluster Management project -FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:8e253ccce2a7e8767d5ffeb6b82fcd1c0fc5abaea7a6d7f9c62dc83691b1de58 as dynamic-plugin +FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:87f2eb0ce06e922a7629fa94fad62ed4e6be05931852b779269e0692282a099e as dynamic-plugin WORKDIR /app/frontend COPY ./frontend . RUN npm ci --legacy-peer-deps RUN npm run build:plugin:acm -FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:8e253ccce2a7e8767d5ffeb6b82fcd1c0fc5abaea7a6d7f9c62dc83691b1de58 as backend +FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:87f2eb0ce06e922a7629fa94fad62ed4e6be05931852b779269e0692282a099e as backend WORKDIR /app/backend # Copy only package.json and package-lock.json so that the docker layer cache only changes if those change # This will cause the npm ci to only rerun if the package.json or package-lock.json changes @@ -15,12 +15,12 @@ RUN npm ci --omit=optional --ignore-scripts COPY ./backend . RUN npm run build -FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:8e253ccce2a7e8767d5ffeb6b82fcd1c0fc5abaea7a6d7f9c62dc83691b1de58 as production +FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:87f2eb0ce06e922a7629fa94fad62ed4e6be05931852b779269e0692282a099e as production WORKDIR /app/backend COPY ./backend/package-lock.json ./backend/package.json ./ RUN npm ci --omit=optional --only=production --ignore-scripts -FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:8e253ccce2a7e8767d5ffeb6b82fcd1c0fc5abaea7a6d7f9c62dc83691b1de58 +FROM registry.redhat.io/ubi9/nodejs-20-minimal@sha256:87f2eb0ce06e922a7629fa94fad62ed4e6be05931852b779269e0692282a099e WORKDIR /app ENV NODE_ENV production COPY --from=production /app/backend/node_modules ./node_modules