Skip to content

Commit f805b0d

Browse files
authored
chore(UBI): Bump base images (#1386)
* chore(ubi9) Bump image hash * chore(ubi10) Bump image hash * chore: Update changelog * chore(nix) Bump nixpkgs and add nodejs as a dependency
1 parent b1f06e7 commit f805b0d

File tree

7 files changed

+10
-7
lines changed

7 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ All notable changes to this project will be documented in this file.
1818
- testing-tools: refactoring: Split image into multiple images, remove unnecessary components and switch to UBI as base image ([#1354]).
1919
- hive: fixed 4.0.1 shaded hive-metastore-opa-authorizer jar by relocating dependencies ([#1356]).
2020
- testing-tools: fix: add kubectl and openssl ([#1367]).
21+
- ubi: Bumped ubi9 and ubi10 hashes ([#1386]).
2122

2223
### Removed
2324

@@ -32,6 +33,7 @@ All notable changes to this project will be documented in this file.
3233
[#1357]: https://github.com/stackabletech/docker-images/pull/1357
3334
[#1358]: https://github.com/stackabletech/docker-images/pull/1358
3435
[#1367]: https://github.com/stackabletech/docker-images/pull/1367
36+
[#1386]: https://github.com/stackabletech/docker-images/pull/1386
3537

3638
## [25.11.0] - 2025-11-07
3739

nix/sources.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

shell.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ pkgs.mkShell {
88
packages = [
99
pkgs.cargo
1010
pkgs.rustc
11+
pkgs.nodejs
1112
];
1213

1314
buildInputs = [

stackable-base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ EOF
3939
# Find the latest version at https://catalog.redhat.com/software/containers/ubi9/ubi-minimal/615bd9b4075b022acc111bf5?container-tabs=gti
4040
# IMPORTANT: Make sure to use the "Manifest List Digest" that references the images for multiple architectures
4141
# rather than just the "Image Digest" that references the image for the selected architecture.
42-
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:2f06ae0e6d3d9c4f610d32c480338eef474867f435d8d28625f2985e8acde6e8 AS final
42+
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:6fc28bcb6776e387d7a35a2056d9d2b985dc4e26031e98a2bd35a7137cd6fd71 AS final
4343

4444
# intentionally unused
4545
ARG PRODUCT_VERSION

stackable-devel/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# Find the latest version at https://catalog.redhat.com/software/containers/ubi9/ubi-minimal/615bd9b4075b022acc111bf5?container-tabs=gti
1212
# IMPORTANT: Make sure to use the "Manifest List Digest" that references the images for multiple architectures
1313
# rather than just the "Image Digest" that references the image for the selected architecture.
14-
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:2f06ae0e6d3d9c4f610d32c480338eef474867f435d8d28625f2985e8acde6e8
14+
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:6fc28bcb6776e387d7a35a2056d9d2b985dc4e26031e98a2bd35a7137cd6fd71
1515

1616
# intentionally unused
1717
ARG PRODUCT_VERSION

testing-tools/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Find the latest version at https://catalog.redhat.com/en/software/containers/ubi10/ubi-minimal/66f1504a379b9c2cf23e145c#get-this-image
55
# IMPORTANT: Make sure to use the "Manifest List Digest" that references the images for multiple architectures
66
# rather than just the "Image Digest" that references the image for the selected architecture.
7-
FROM registry.access.redhat.com/ubi10/ubi-minimal@sha256:28ec2f4662bdc4b0d4893ef0d8aebf36a5165dfb1d1dc9f46319bd8a03ed3365
7+
FROM registry.access.redhat.com/ubi10/ubi-minimal@sha256:67aafc6c9c44374e1baf340110d4c835457d59a0444c068ba9ac6431a6d9e7ac
88

99
ARG PRODUCT_VERSION
1010
ARG PYTHON_VERSION

ubi9-rust-builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# Find the latest version at https://catalog.redhat.com/software/containers/ubi9/ubi-minimal/615bd9b4075b022acc111bf5?container-tabs=gti
55
# IMPORTANT: Be sure to use the Manifest List Digest for multi-arch support
6-
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:2f06ae0e6d3d9c4f610d32c480338eef474867f435d8d28625f2985e8acde6e8 AS builder
6+
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:6fc28bcb6776e387d7a35a2056d9d2b985dc4e26031e98a2bd35a7137cd6fd71 AS builder
77

88
LABEL maintainer="Stackable GmbH"
99

0 commit comments

Comments
 (0)