From ed85507d12c237fb7df292bedd8571735250a886 Mon Sep 17 00:00:00 2001 From: Simonas Kareiva Date: Thu, 9 Jul 2026 19:47:16 +0300 Subject: [PATCH] Use CentOS Stream minimal image --- Containerfile | 6 +++--- cookie-operator-deployment.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Containerfile b/Containerfile index ba1e4bd..08d22ce 100644 --- a/Containerfile +++ b/Containerfile @@ -1,11 +1,11 @@ -FROM quay.io/olbohlen/kshbase:latest -#FROM docker.eenfach.de/olbohlen/kshbase:latest +FROM quay.io/centos/centos:stream10-minimal LABEL author="Olaf Bohlen " COPY recipe-processor.ksh /usr/local/bin/recipe-processor.ksh RUN chmod 755 /usr/local/bin/recipe-processor.ksh && \ + microdnf install -y shadow-utils && \ useradd cookie && \ - dnf install -y jq + microdnf install -y jq ksh USER cookie diff --git a/cookie-operator-deployment.yaml b/cookie-operator-deployment.yaml index 0fbdc1f..6ceeff9 100644 --- a/cookie-operator-deployment.yaml +++ b/cookie-operator-deployment.yaml @@ -19,7 +19,7 @@ spec: spec: serviceAccountName: cookieprocessor containers: - - image: quay.io/olbohlen/cookie-operator:latest + - image: quay.io/kareiva/cookie-operator:latest name: cookie-operator resources: {} status: {} -- 2.49.1