Skip to content

Commit 6b0af74

Browse files
committed
chore: install find in stackable-base
1 parent f5e8fd4 commit 6b0af74

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

opa/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ ARG BUNDLE_BUILDER_VERSION
99
RUN microdnf update \
1010
&& microdnf install \
1111
cmake \
12-
findutils \
1312
gcc \
1413
gcc-c++ \
1514
git \

stackable-base/Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@ COPY stackable-base/stackable/curlrc /root/.curlrc
8080
RUN <<EOF
8181
microdnf update
8282

83+
# **findutils**
84+
# Needed to find all patch files, used in `apply_patches.sh`
85+
# Added 2024-10:
86+
# TODO: https://nvd.nist.gov/vuln/search/results
87+
# TODO: cpe:2.3:a:gnu:find:-:*:*:*:*:*:*:*
88+
#
8389
# **iputils**
8490
# To make debugging easier, includes things like ping
8591
# Added 2024-03: We cannot find any vulnerabilities in the past years
@@ -103,6 +109,7 @@ microdnf update
103109
# https://nvd.nist.gov/vuln/search/results?adv_search=true&isCpeNameSearch=true&query=cpe%3A2.3%3Aa%3Agnu%3Atar%3A-%3A*%3A*%3A*%3A*%3A*%3A*%3A*
104110
# cpe:2.3:a:gnu:tar:-:*:*:*:*:*:*:*
105111
microdnf install \
112+
findutils \
106113
iputils \
107114
less \
108115
nano \

superset/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ COPY superset/constraints-${PRODUCT}.txt /tmp/constraints.txt
1616
RUN microdnf update \
1717
&& microdnf install \
1818
cyrus-sasl-devel \
19-
# Needed to find all patch files, used in `apply_patches.sh`
20-
findutils \
2119
# Needed by ./configure to work out SQLite compilation flags, see snippet [1] at the end of file
2220
diffutils \
2321
# According to https://stackoverflow.com/q/19530974 normally sqlite3 should be shipped with the Python

0 commit comments

Comments
 (0)