Skip to content
Closed
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ All notable changes to this project will be documented in this file.
- hdfs: Exclude unused jars and mitigate snappy-java CVEs by bumping dependency ([#682]).
- druid: Build from source ([#684], [#696]).
- opa: Add log processing script to opa for decision logging ([#695], [#704]).
- opa: Add the package util-linux containing the command logger which
allows to enter messages into the system log ([#728]).
- stackable-base: Add [config-utils](https://github.com/stackabletech/config-utils) ([#706]).
- omid: Include Apache Omid Examples to simplify testing ([#721]).

Expand Down Expand Up @@ -102,6 +104,7 @@ All notable changes to this project will be documented in this file.
[#706]: https://github.com/stackabletech/docker-images/pull/706
[#721]: https://github.com/stackabletech/docker-images/pull/721
[#727]: https://github.com/stackabletech/docker-images/pull/727
[#728]: https://github.com/stackabletech/docker-images/pull/728

## [24.3.0] - 2024-03-20

Expand Down
4 changes: 4 additions & 0 deletions opa/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ RUN microdnf update \
pkg-config \
systemd-devel \
unzip \
# To add the command logger which allows to enter messages into the system log
# cpe:2.3:a:kernel:util-linux:*:*:*:*:*:*:*:*
# 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*
util-linux \
&& rm -rf /var/cache/yum

WORKDIR /
Expand Down