From 3d4c1ed42e63352d96b63195e6b5745acf8c1231 Mon Sep 17 00:00:00 2001 From: openeuler_bot Date: Sun, 17 Aug 2025 02:45:34 +0000 Subject: [PATCH] 24.03-lts-sp1 update hbase to 2.6.3 --- Bigdata/hbase/2.6.3/24.03-lts-sp1/Dockerfile | 19 +++++++++++++++++++ Bigdata/hbase/meta.yml | 4 +++- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 Bigdata/hbase/2.6.3/24.03-lts-sp1/Dockerfile diff --git a/Bigdata/hbase/2.6.3/24.03-lts-sp1/Dockerfile b/Bigdata/hbase/2.6.3/24.03-lts-sp1/Dockerfile new file mode 100644 index 00000000..eb468c82 --- /dev/null +++ b/Bigdata/hbase/2.6.3/24.03-lts-sp1/Dockerfile @@ -0,0 +1,19 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp1 +FROM $BASE + +ARG VERSION=2.6.3 + +RUN curl -fSL -o hbase.tar.gz https://dlcdn.apache.org/hbase/${VERSION}/hbase-${VERSION}-bin.tar.gz; \ + mkdir -p /usr/local/hbase && \ + tar -zxf hbase.tar.gz -C /usr/local/hbase --strip-components=1 && \ + rm -rf hbase.tar.gz + +ENV PATH=$PATH:/usr/local/hbase/bin + +RUN yum install -y java-11-openjdk-devel findutils && \ + yum clean all + +ENV JAVA_HOME=/usr/lib/jvm/java-11-openjdk + +EXPOSE 8080 8085 9090 9095 2181 16010 +ENTRYPOINT ["hbase", "version"] \ No newline at end of file diff --git a/Bigdata/hbase/meta.yml b/Bigdata/hbase/meta.yml index f855070b..b4709968 100644 --- a/Bigdata/hbase/meta.yml +++ b/Bigdata/hbase/meta.yml @@ -1,2 +1,4 @@ 2.6.2-oe2403sp1: - path: 2.6.2/24.03-lts-sp1/Dockerfile \ No newline at end of file + path: 2.6.2/24.03-lts-sp1/Dockerfile +2.6.3-oe2403sp1: + path: 2.6.3/24.03-lts-sp1/Dockerfile \ No newline at end of file -- Gitee