File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ ARG BUNDLE_BUILDER_VERSION
99RUN microdnf update \
1010 && microdnf install \
1111 cmake \
12- findutils \
1312 gcc \
1413 gcc-c++ \
1514 git \
Original file line number Diff line number Diff line change @@ -80,6 +80,12 @@ COPY stackable-base/stackable/curlrc /root/.curlrc
8080RUN <<EOF
8181microdnf 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:-:*:*:*:*:*:*:*
105111microdnf install \
112+ findutils \
106113 iputils \
107114 less \
108115 nano \
Original file line number Diff line number Diff line change @@ -16,8 +16,6 @@ COPY superset/constraints-${PRODUCT}.txt /tmp/constraints.txt
1616RUN 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
You can’t perform that action at this time.
0 commit comments