Skip to content

Commit b35af42

Browse files
feat (tools): Add the package util-linux-core (#952)
1 parent efd9b9d commit b35af42

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ All notable changes to this project will be documented in this file.
88

99
- nifi: Add NiFi hadoop Azure and GCP libraries ([#943]).
1010
- base: Add containerdebug tool ([#928]).
11+
- tools: Add the package util-linux-core ([#952]).
12+
util-linux-core contains a basic set of Linux utilities, including the
13+
command logger which allows to enter messages into the system log.
1114

1215
### Changed
1316

@@ -21,6 +24,7 @@ All notable changes to this project will be documented in this file.
2124
[#884]: https://github.com/stackabletech/docker-images/pull/884
2225
[#928]: https://github.com/stackabletech/docker-images/pull/928
2326
[#943]: https://github.com/stackabletech/docker-images/pull/943
27+
[#952]: https://github.com/stackabletech/docker-images/pull/952
2428
[#953]: https://github.com/stackabletech/docker-images/pull/953
2529

2630
## [24.11.0] - 2024-11-18

tools/Dockerfile

+6
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ RUN microdnf update && \
2626
iputils \
2727
openssl \
2828
tar \
29+
# util-linux-core contains a basic set of Linux utilities, including
30+
# the command logger which allows to enter messages into the system
31+
# log.
32+
# cpe:2.3:a:kernel:util-linux:*:*:*:*:*:*:*:*
33+
# https://nvd.nist.gov/vuln/search/results?isCpeNameSearch=true&query=cpe%3A2.3%3Aa%3Akernel%3Autil-linux%3A*%3A*%3A*%3A*%3A*%3A*%3A*%3A
34+
util-linux-core \
2935
zip && \
3036
microdnf clean all && \
3137
rm -rf /var/cache/yum

0 commit comments

Comments
 (0)