From 498ae17db7402c251e7d0c55285ac27f826222c7 Mon Sep 17 00:00:00 2001 From: Karol Stolarski Date: Tue, 10 Nov 2020 13:58:04 -0600 Subject: [PATCH] Updated to 8.3 --- Dockerfile | 2 +- Makefile | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 49d95a4..37248f8 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.2 +ARG BASE_TAG=8.3 FROM kubeflow-images-public/admission-webhook:v20190520-v0-139-gcee39dbc-dirty-0d8f4c AS base FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} diff --git a/Makefile b/Makefile index 7c4abd1..2b2a1b7 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,11 @@ history: ${ORIGINAL} \ --no-trunc | tac | tee history.txt -build: +pull: + docker pull gcr.io/kubeflow-images-public/admission-webhook@sha256:82f41fd8878ead19616b577c537d2ff83ea576b78478b2f8819caa83eeac0ee0 + docker tag gcr.io/kubeflow-images-public/admission-webhook@sha256:82f41fd8878ead19616b577c537d2ff83ea576b78478b2f8819caa83eeac0ee0 kubeflow-images-public/admission-webhook:v20190520-v0-139-gcee39dbc-dirty-0d8f4c + +build: pull docker build --no-cache \ --build-arg BASE_REGISTRY="registry.access.redhat.com" \ -t ${HARDENED} . @@ -35,4 +39,6 @@ run: run-it: docker run -it --rm \ - ${HARDENED} /bin/bash \ No newline at end of file + ${HARDENED} /bin/bash + +all: pull fast run \ No newline at end of file -- GitLab