From 336efd304c1382a20521f9b1c0dfadd7867af44d Mon Sep 17 00:00:00 2001 From: openeuler_bot Date: Sat, 8 Nov 2025 00:04:32 +0000 Subject: [PATCH] 24.03-lts-sp2 update tez to 0.10.5 --- Bigdata/tez/0.10.5/24.03-lts-sp2/Dockerfile | 20 ++++++++++++++++++++ Bigdata/tez/README.md | 1 + Bigdata/tez/doc/image-info.yml | 1 + Bigdata/tez/meta.yml | 4 +++- 4 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 Bigdata/tez/0.10.5/24.03-lts-sp2/Dockerfile diff --git a/Bigdata/tez/0.10.5/24.03-lts-sp2/Dockerfile b/Bigdata/tez/0.10.5/24.03-lts-sp2/Dockerfile new file mode 100644 index 00000000..3a24c4d4 --- /dev/null +++ b/Bigdata/tez/0.10.5/24.03-lts-sp2/Dockerfile @@ -0,0 +1,20 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp2 +FROM ${BASE} +ARG VERSION=0.10.5 + +RUN dnf update -y \ + && dnf install -y maven wget \ + && dnf clean all \ + && rm -rf /var/cache/dnf + +WORKDIR /opt + +RUN wget https://github.com/apache/tez/archive/refs/tags/rel/release-${VERSION}.tar.gz \ + && tar -zxvf release-${VERSION}.tar.gz \ + && rm -rf release-${VERSION}.tar.gz + +WORKDIR /opt/tez-rel-release-${VERSION} + +RUN mvn clean install -DskipTests -pl '!tez-ui' + +CMD ["bash"] diff --git a/Bigdata/tez/README.md b/Bigdata/tez/README.md index f457ee42..9e2b2022 100644 --- a/Bigdata/tez/README.md +++ b/Bigdata/tez/README.md @@ -16,6 +16,7 @@ For more information about tez, please visit [https://tez.apache.org/](https://t The tag of each tez docker image is consist of the version of tez and the version of basic image. The details are as follows | Tags | Currently | Architectures| |--|--|--| +|[0.10.5-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Bigdata/tez/0.10.5/24.03-lts-sp2/Dockerfile) | tez 0.10.5 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[0.10.5-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Bigdata/tez/0.10.5/24.03-lts-sp1/Dockerfile)| Apache Tez 0.10.5 on openEuler 24.03-LTS-SP1 | amd64, arm64 | # Usage diff --git a/Bigdata/tez/doc/image-info.yml b/Bigdata/tez/doc/image-info.yml index 4b15a587..12edbd82 100644 --- a/Bigdata/tez/doc/image-info.yml +++ b/Bigdata/tez/doc/image-info.yml @@ -11,6 +11,7 @@ tags: | | Tag | Currently | Architectures | |----------|-------------|------------------| + |[0.10.5-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Bigdata/tez/0.10.5/24.03-lts-sp2/Dockerfile) | tez 0.10.5 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[0.10.5-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Bigdata/tez/0.10.5/24.03-lts-sp1/Dockerfile)| Apache Tez 0.10.5 on openEuler 24.03-LTS-SP1 | amd64, arm64 | download: | diff --git a/Bigdata/tez/meta.yml b/Bigdata/tez/meta.yml index 419e0c5c..5fb10ffc 100644 --- a/Bigdata/tez/meta.yml +++ b/Bigdata/tez/meta.yml @@ -1,2 +1,4 @@ 0.10.5-oe2403sp1: - path: 0.10.5/24.03-lts-sp1/Dockerfile \ No newline at end of file + path: 0.10.5/24.03-lts-sp1/Dockerfile +0.10.5-oe2403sp2: + path: 0.10.5/24.03-lts-sp2/Dockerfile \ No newline at end of file -- Gitee