From d477d86cba94f5e6020f26690459b62171e7ee92 Mon Sep 17 00:00:00 2001 From: Joshua Eason Date: Wed, 18 Aug 2021 16:45:00 +0000 Subject: [PATCH] Update to UBI 8.4 --- Dockerfile | 4 ++-- hardening_manifest.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6fe87f7..b043f25 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 kfserving/kfserving-controller:0.2.2 AS base FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} ENV LANG C.UTF-8 @@ -16,4 +16,4 @@ RUN find / -path /proc -prune -o -perm /2000 -exec chmod g-s {} \; RUN chown -R kf /manager WORKDIR /manager USER kf -ENTRYPOINT [ "./manager" ] \ No newline at end of file +ENTRYPOINT [ "./manager" ] diff --git a/hardening_manifest.yaml b/hardening_manifest.yaml index 4679e97..45b3bb2 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