Created
May 27, 2026 15:21
-
-
Save jwmatthews/ab07456feec5825130cee7b1d4f02f64 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/build/Containerfile b/build/Containerfile | |
| index 2cac6ba..016ef40 100644 | |
| --- a/build/Containerfile | |
| +++ b/build/Containerfile | |
| @@ -1,5 +1,5 @@ | |
| # Stage 1: Go builder — kantra and kantra release assets | |
| -FROM registry.access.redhat.com/ubi9/go-toolset AS go-builder | |
| +FROM registry.access.redhat.com/ubi10/go-toolset AS go-builder | |
| ARG KANTRA_VERSION=v0.9.2-rc.1 | |
| ARG KANTRA_REPO=https://github.com/konveyor/kantra.git | |
| @@ -23,7 +23,7 @@ RUN : > /kantra-assets/maven-index.txt \ | |
| # Stage 2: Rust builder — semver-analyzer, frontend-analyzer-provider, fix-engine-cli | |
| -FROM registry.access.redhat.com/ubi9/ubi AS rust-builder | |
| +FROM registry.access.redhat.com/ubi10/ubi AS rust-builder | |
| ARG SEMVER_REPO=https://github.com/konveyor-ecosystem/semver-analyzer.git | |
| ARG SEMVER_BRANCH=main | |
| @@ -63,7 +63,7 @@ RUN strip \ | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| # Stage 3a: PatternFly React rules | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| -FROM registry.access.redhat.com/ubi9/ubi AS pf-rule-gen | |
| +FROM registry.access.redhat.com/ubi10/ubi AS pf-rule-gen | |
| ARG PF_REACT_REPO=https://github.com/patternfly/patternfly-react.git | |
| ARG PF_CSS_REPO=https://github.com/patternfly/patternfly.git | |
| @@ -128,7 +128,7 @@ RUN mkdir -p /rules/semver_rules \ | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| # Stage 3b: PatternFly React Topology rules | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| -FROM registry.access.redhat.com/ubi9/ubi AS topology-rule-gen | |
| +FROM registry.access.redhat.com/ubi10/ubi AS topology-rule-gen | |
| ARG TOPOLOGY_REPO=https://github.com/patternfly/react-topology.git | |
| ARG TOPOLOGY_FROM=v5.4.1 | |
| @@ -179,7 +179,7 @@ RUN mkdir -p /rules/semver_rules \ | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| # Stage 3c: PatternFly React Component Groups rules | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| -FROM registry.access.redhat.com/ubi9/ubi AS rcg-rule-gen | |
| +FROM registry.access.redhat.com/ubi10/ubi AS rcg-rule-gen | |
| ARG RCG_REPO=https://github.com/patternfly/react-component-groups.git | |
| ARG RCG_FROM=v5.5.3 | |
| @@ -230,7 +230,7 @@ RUN mkdir -p /rules/semver_rules \ | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| # Stage 3d: Dynamic Plugin SDK rules | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| -FROM registry.access.redhat.com/ubi9/ubi AS sdk-rule-gen | |
| +FROM registry.access.redhat.com/ubi10/ubi AS sdk-rule-gen | |
| ARG SDK_REPO=https://github.com/openshift/dynamic-plugin-sdk.git | |
| ARG SDK_FROM_DATE=2023-04-13 | |
| @@ -284,14 +284,14 @@ RUN mkdir -p /rules/semver_rules \ | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| # Stage 3e: Console SDK rules (disabled — needs --package-name-map from updates branch) | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| -FROM registry.access.redhat.com/ubi9/ubi-minimal AS console-rule-gen | |
| +FROM registry.access.redhat.com/ubi10/ubi-minimal AS console-rule-gen | |
| RUN mkdir -p /rules/semver_rules | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| # Stage 3f: React rules | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| -FROM registry.access.redhat.com/ubi9/ubi AS react-rule-gen | |
| +FROM registry.access.redhat.com/ubi10/ubi AS react-rule-gen | |
| ARG REACT_REPO=https://github.com/facebook/react.git | |
| ARG REACT_FROM=v17.0.2 | |
| @@ -344,7 +344,7 @@ RUN mkdir -p /rules/semver_rules \ | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| # Stage 3g: React Types rules (synthetic repo from DefinitelyTyped) | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| -FROM registry.access.redhat.com/ubi9/ubi AS react-types-gen | |
| +FROM registry.access.redhat.com/ubi10/ubi AS react-types-gen | |
| ARG DT_REPO=https://github.com/DefinitelyTyped/DefinitelyTyped.git | |
| ARG REACT_TYPES_FROM=v17 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment