Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ All notable changes to this project will be documented in this file.
- testing-tools: Move Kerberos packages from testing-tools/hive to parent since they provide `kinit` which is needed in other tests too (ex. HBase). ([#1389]).
- hbase: Removed test class from backport HBASE-29797 to HBase version `2.6.3` ([#1426]).
- superset: Pin setup-tools to ensure pkg_resources are installed (needed for `4.1.4` builds) ([#1428]).
- ubi10-rust-builder: Add gzip dependency for the ONBUILD step ([#1436]).

[#1336]: https://github.com/stackabletech/docker-images/pull/1336
[#1337]: https://github.com/stackabletech/docker-images/pull/1337
Expand Down Expand Up @@ -113,6 +114,7 @@ All notable changes to this project will be documented in this file.
[#1432]: https://github.com/stackabletech/docker-images/pull/1432
[#1433]: https://github.com/stackabletech/docker-images/pull/1433
[#1435]: https://github.com/stackabletech/docker-images/pull/1435
[#1436]: https://github.com/stackabletech/docker-images/pull/1436

## [25.11.0] - 2025-11-07

Expand Down
2 changes: 2 additions & 0 deletions ubi10-rust-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ RUN microdnf update \
# tar needed to create the source code snapshot before building the Rust code
tar \
unzip \
# gzip needed by the tar command in the ONBUILD step
gzip \
&& microdnf clean all \
&& rm -rf /var/cache/yum

Expand Down