Skip to content
Merged
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
Empty file modified docker/build_docker_images.sh
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions docker/hoodie/hadoop/base_java11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM openjdk:11-jdk-slim-bullseye
MAINTAINER Hoodie
FROM eclipse-temurin:11-jdk-jammy
LABEL maintainer="Hoodie"
USER root

# Default to UTF-8 file.encoding
Expand Down
4 changes: 2 additions & 2 deletions docker/hoodie/hadoop/sparkadhoc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ RUN set -x \
&& wget -q -O /usr/local/bin/trino ${BASE_URL}/io/trino/trino-cli/${TRINO_VERSION}/trino-cli-${TRINO_VERSION}-executable.jar \
&& chmod +x /usr/local/bin/trino

RUN cp /opt/hive/lib/calcite-core*.jar $HADOOP_HOME/share/hadoop/common/lib/
RUN cp /opt/hive/lib/libfb*.jar $HADOOP_HOME/share/hadoop/common/lib/
RUN cp /opt/hive/lib/calcite-core*.jar $HADOOP_HOME/share/hadoop/common/lib/ 2>/dev/null || true
RUN cp /opt/hive/lib/libfb*.jar $HADOOP_HOME/share/hadoop/common/lib/ 2>/dev/null || true
CMD ["/bin/bash", "/opt/spark/adhoc.sh"]
Loading