From 79e4e9380d135ba90670e4b37ca5b5ed96b5e91c Mon Sep 17 00:00:00 2001 From: Chris Hambridge Date: Tue, 3 Sep 2024 15:52:06 -0400 Subject: [PATCH] Deploy with ubi9-minimal (#200) * Update contanerfile to use ubi9-minimal --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index fa1af2c..3381be2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi8/ubi-minimal:latest +FROM registry.access.redhat.com/ubi9-minimal:latest ARG PIPENV_DEV=False ARG USER_ID=1000 @@ -13,7 +13,7 @@ ENV PYTHON_VERSION=3.11 \ PIPENV_VERBOSITY=-1 \ APP_ROOT=/opt/kokudaily \ APP_HOME=/opt/kokudaily/kokudaily \ - PLATFORM="el8" + PLATFORM="el9" ENV SUMMARY="Koku-daily is a metrics collector for the Cost Management application" \ DESCRIPTION="Koku-daily is a metrics collector for the Cost Management application" @@ -22,8 +22,8 @@ LABEL summary="$SUMMARY" \ description="$DESCRIPTION" \ io.k8s.description="$DESCRIPTION" \ io.k8s.display-name="Koku-daily" \ - io.openshift.tags="builder,python,python38,rh-python38" \ - com.redhat.component="python38-docker" \ + io.openshift.tags="builder,python,python311,rh-python38" \ + com.redhat.component="python311-docker" \ name="Koku-daily" \ version="1" \ maintainer="Red Hat Cost Management Services"