Skip to content

Commit 97a3ad5

Browse files
authored
feat(trino): Add libstdc++ package, needed by snappy and duckdb (#1015)
* feat(trino): Add libstdc++ package, needed by snappy and duckdb * Remove quotes * Reformat to make hadolint happy * changelog * fix conflicst
1 parent 988cdb7 commit 97a3ad5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ All notable changes to this project will be documented in this file.
3838
- hbase: Use jmx_export 1.1.0 ([#1021]).
3939
- omid: Use jmx_export 1.1.0 ([#1021]).
4040
- spark: Add 3.5.5 ([#1022]).
41+
- trino: Add libstdc++ package, needed by snappy and duckdb ([#1015]).
4142

4243
### Changed
4344

@@ -98,6 +99,7 @@ All notable changes to this project will be documented in this file.
9899
[#1006]: https://github.com/stackabletech/docker-images/pull/1006
99100
[#1007]: https://github.com/stackabletech/docker-images/pull/1007
100101
[#1013]: https://github.com/stackabletech/docker-images/pull/1013
102+
[#1015]: https://github.com/stackabletech/docker-images/pull/1015
101103
[#1021]: https://github.com/stackabletech/docker-images/pull/1021
102104
[#1022]: https://github.com/stackabletech/docker-images/pull/1022
103105

trino/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ COPY shared/log4shell_scanner /bin/log4shell_scanner
7878
RUN /bin/log4shell_scanner s /stackable/trino-server-${PRODUCT}
7979
# ===
8080

81-
FROM stackable/image/java-base
81+
FROM stackable/image/java-base AS final
8282

8383
ARG PRODUCT
8484
ARG JMX_EXPORTER
@@ -99,6 +99,8 @@ RUN microdnf update && \
9999
httpd-tools \
100100
python \
101101
tar \
102+
# Required by snappy and duckdb, see https://github.com/trinodb/trino/pull/25143
103+
libstdc++ \
102104
zip && \
103105
microdnf clean all && \
104106
rm -rf /var/cache/yum

0 commit comments

Comments
 (0)