From c3f44c8d1b090ca6f45f0b5bcd549741234e8ba1 Mon Sep 17 00:00:00 2001 From: "sean.melissari" Date: Thu, 20 May 2021 13:24:03 +0000 Subject: [PATCH 1/2] bump ubi --- hardening_manifest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardening_manifest.yaml b/hardening_manifest.yaml index 7e90f2e..2f96328 100644 --- a/hardening_manifest.yaml +++ b/hardening_manifest.yaml @@ -14,7 +14,7 @@ tags: # Build args passed to Dockerfile ARGs args: BASE_IMAGE: "redhat/ubi/ubi8" - BASE_TAG: "8.3" + BASE_TAG: "8.4" # Docker image labels labels: -- GitLab From 0801e12e0745e479778baa6f4a93b2bf9ee959dd Mon Sep 17 00:00:00 2001 From: "sean.melissari" Date: Fri, 21 May 2021 21:39:55 +0000 Subject: [PATCH 2/2] Update Dockerfile --- Dockerfile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6688e57..e71663a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,11 @@ -############################################################### -# Default registry variables -ARG BASE_REGISTRY=nexus-docker-secure.levelup-dev.io -ARG BASE_IMAGE=redhat/ubi/ubi8 -ARG BASE_TAG=8.2 +ARG BASE_REGISTRY=registry1.dso.mil +ARG BASE_IMAGE=ironbank/redhat/ubi/ubi8 +ARG BASE_TAG=8.4 FROM istio/mixer:1.5.10 AS base FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} - COPY --from=base /usr/local/bin/mixs /usr/local/bin/mixs RUN dnf update -y && \ -- GitLab