File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,13 +35,11 @@ cd /secret-operator
3535cargo auditable --quiet build --release --package cert-tools && cargo cyclonedx --all --spec-version 1.5 --describe binaries
3636EOF
3737
38- # Find the latest version at https://catalog.redhat.com/software/containers/ubi9/ubi-minimal/615bd9b4075b022acc111bf5?container-tabs=gti
39- # IMPORTANT: Make sure to use the "Manifest List Digest" that references the images for multiple architectures
40- # rather than just the "Image Digest" that references the image for the selected architecture.
41- # The website is broken, so you can use this to find it:
42- # curl https://catalog.redhat.com/en/software/containers/ubi9/ubi-minimal/615bd9b4075b022acc111bf5 \
43- # | grep -oE 'registry.redhat.io/ubi9/ubi-minimal@sha256:[a-z0-9]{64}'
44- FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:c7d44146f826037f6873d99da479299b889473492d3c1ab8af86f08af04ec8a0 AS builder
38+ # Find the latest version:
39+ #
40+ # docker buildx imagetools inspect registry.access.redhat.com/ubi9/ubi-minimal --format '{{json .Manifest.Digest}}'
41+ #
42+ FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:1bc3c5c15720506a0cf48adfdf8b623dfe704377e007d7bbae8d14876392ca6a AS builder
4543
4644# intentionally unused
4745ARG PRODUCT_VERSION
Original file line number Diff line number Diff line change 88# Use `stackable-base` as a base for the final image stage instead
99#
1010
11- # Find the latest version at https://catalog.redhat.com/software/containers/ubi9/ubi-minimal/615bd9b4075b022acc111bf5?container-tabs=gti
12- # IMPORTANT: Make sure to use the "Manifest List Digest" that references the images for multiple architectures
13- # rather than just the "Image Digest" that references the image for the selected architecture.
14- # The website is broken, so you can use this to find it:
15- # curl https://catalog.redhat.com/en/software/containers/ubi9/ubi-minimal/615bd9b4075b022acc111bf5 \
16- # | grep -oE 'registry.redhat.io/ubi9/ubi-minimal@sha256:[a-z0-9]{64}'
17- FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:c7d44146f826037f6873d99da479299b889473492d3c1ab8af86f08af04ec8a0 AS builder
11+ # Find the latest version:
12+ #
13+ # docker buildx imagetools inspect registry.access.redhat.com/ubi9/ubi-minimal --format '{{json .Manifest.Digest}}'
14+ #
15+ FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:1bc3c5c15720506a0cf48adfdf8b623dfe704377e007d7bbae8d14876392ca6a AS builder
1816
1917# intentionally unused
2018ARG PRODUCT_VERSION
@@ -51,10 +49,10 @@ ARG RUST_DEFAULT_TOOLCHAIN_VERSION=1.93.0
5149ENV RUST_DEFAULT_TOOLCHAIN_VERSION=${RUST_DEFAULT_TOOLCHAIN_VERSION}
5250# Find the latest version here: https://crates.io/crates/cargo-cyclonedx
5351# renovate: datasource=crate packageName=cargo-cyclonedx
54- ENV CARGO_CYCLONEDX_CRATE_VERSION=0.5.7
52+ ENV CARGO_CYCLONEDX_CRATE_VERSION=0.5.9
5553# Find the latest version here: https://crates.io/crates/cargo-auditable
5654# renovate: datasource=crate packageName=cargo-auditable
57- ENV CARGO_AUDITABLE_CRATE_VERSION=0.7.2
55+ ENV CARGO_AUDITABLE_CRATE_VERSION=0.7.4
5856
5957RUN <<EOF
6058microdnf update
Original file line number Diff line number Diff line change 44ARG GRPCURL_VERSION
55FROM fullstorydev/grpcurl:v${GRPCURL_VERSION} AS grpcurl
66
7- # Find the latest version at https://catalog.redhat.com/en/software/containers/ubi10/ubi-minimal/66f1504a379b9c2cf23e145c#get-this-image
8- # IMPORTANT: Make sure to use the "Manifest List Digest" that references the images for multiple architectures
9- # rather than just the "Image Digest" that references the image for the selected architecture.
10- FROM registry.access.redhat.com/ubi10/ubi-minimal@sha256:67aafc6c9c44374e1baf340110d4c835457d59a0444c068ba9ac6431a6d9e7ac
7+ # Find the latest version:
8+ #
9+ # docker buildx imagetools inspect registry.access.redhat.com/ubi10/ubi-minimal --format '{{json .Manifest.Digest}}'
10+ #
11+ FROM registry.access.redhat.com/ubi10/ubi-minimal@sha256:76c113359a458e3f04057762b5bd4a9837a6987520434dea158c728280116713
1112
1213ARG PRODUCT_VERSION
1314ARG PYTHON_VERSION
Original file line number Diff line number Diff line change 11# syntax=docker/dockerfile:1.16.0@sha256:e2dd261f92e4b763d789984f6eab84be66ab4f5f08052316d8eb8f173593acf7
22# check=error=true
33
4- # Find the latest version at https://catalog.redhat.com/en/software/containers/ubi10/ubi-minimal/66f1504a379b9c2cf23e145c#get-the-image
5- # IMPORTANT: Make sure to use the "Manifest List Digest" that references the images for multiple architectures
6- # rather than just the "Image Digest" that references the image for the selected architecture.
7- # The website is broken, so you can use this to find it:
8- # curl https://catalog.redhat.com/en/software/containers/ubi10/ubi-minimal/66f1504a379b9c2cf23e145c \
9- # | grep -oE 'registry.redhat.io/ubi10/ubi-minimal@sha256:[a-z0-9]{64}'
10- FROM registry.access.redhat.com/ubi10/ubi-minimal@sha256:a74a7a92d3069bfac09c6882087771fc7db59fa9d8e16f14f4e012fe7288554c AS builder
4+ # Find the latest version:
5+ #
6+ # docker buildx imagetools inspect registry.access.redhat.com/ubi10/ubi-minimal --format '{{json .Manifest.Digest}}'
7+ #
8+ FROM registry.access.redhat.com/ubi10/ubi-minimal@sha256:76c113359a458e3f04057762b5bd4a9837a6987520434dea158c728280116713 AS builder
119
1210LABEL maintainer="Stackable GmbH"
1311
Original file line number Diff line number Diff line change 11# syntax=docker/dockerfile:1.16.0@sha256:e2dd261f92e4b763d789984f6eab84be66ab4f5f08052316d8eb8f173593acf7
22# check=error=true
33
4- # Find the latest version at https://catalog.redhat.com/software/containers/ubi9/ubi-minimal/615bd9b4075b022acc111bf5?container-tabs=gti
5- # IMPORTANT: Be sure to use the Manifest List Digest for multi-arch support
6- # The website is broken, so you can use this to find it:
7- # curl https://catalog.redhat.com/en/software/containers/ubi9/ubi-minimal/615bd9b4075b022acc111bf5 \
8- # | grep -oE 'registry.redhat.io/ubi9/ubi-minimal@sha256:[a-z0-9]{64}'
9- FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:c7d44146f826037f6873d99da479299b889473492d3c1ab8af86f08af04ec8a0 AS builder
4+ # Find the latest version:
5+ #
6+ # docker buildx imagetools inspect registry.access.redhat.com/ubi9/ubi-minimal --format '{{json .Manifest.Digest}}'
7+ #
8+ FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:1bc3c5c15720506a0cf48adfdf8b623dfe704377e007d7bbae8d14876392ca6a AS builder
109
1110LABEL maintainer="Stackable GmbH"
1211
You can’t perform that action at this time.
0 commit comments