From 939ec008bcf6c4e472083ddd8d74dd8d89ac876d Mon Sep 17 00:00:00 2001 From: Michael Simmons Date: Thu, 20 May 2021 11:20:12 -0600 Subject: [PATCH] Bumped base image to UBI 8.4 --- Dockerfile | 2 +- hardening_manifest.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e59946b..2487fda 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Build the intermediate container ARG BASE_REGISTRY=registry1.dsop.io/ironbank/redhat/ubi ARG BASE_IMAGE=ubi8 -ARG BASE_TAG=8.3 +ARG BASE_TAG=8.4 FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} as build USER 0 RUN dnf install make gcc -y diff --git a/hardening_manifest.yaml b/hardening_manifest.yaml index 6f42eba..4d2f0f7 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