From 8a4ea8f4456de11dfbffa3f7af0f869c89c2bafb Mon Sep 17 00:00:00 2001 From: Andy Maksymowicz Date: Wed, 19 May 2021 16:49:01 +0000 Subject: [PATCH 1/2] Update hardening_manifest.yaml --- hardening_manifest.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hardening_manifest.yaml b/hardening_manifest.yaml index d6f1965..4566742 100644 --- a/hardening_manifest.yaml +++ b/hardening_manifest.yaml @@ -8,7 +8,7 @@ name: "opensource/nodejs/nodejs10" # The most specific version should be the first tag and will be shown # on ironbank.dsop.io tags: -- "10.24" +- "10.24.1" - "latest" # Build args passed to Dockerfile ARGs @@ -37,8 +37,8 @@ labels: # List of resources to make available to the offline build context resources: -- tag: node:10.24 - url: docker://docker.io/library/node@sha256:686e0e859358f28bfe1641e1627549b9cd0ad74f222b953d74209213488c6858 +- tag: node:10.24.1 + url: docker://docker.io/library/node@sha256:c8c6878c2c9157fbb0d678c4d562a702347cdf580e9efca53c9d34a4c5b89756 # List of project maintainers # FIXME: Fill in the following details for the current container owner in the whitelist -- GitLab From e63fd1439fa8230ed2abd31029cde20833350ec4 Mon Sep 17 00:00:00 2001 From: Andy Maksymowicz Date: Wed, 19 May 2021 16:50:05 +0000 Subject: [PATCH 2/2] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6182fda..9d00b8e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG BASE_REGISTRY=registry1.dso.mil ARG BASE_IMAGE=ironbank/redhat/ubi/ubi8 ARG BASE_TAG=8.4 -FROM node:10.24 as base +FROM node:10.24.1 as base FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} -- GitLab