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 0000000000000000000000000000000000000000..eb468c82961613f16828f3b4e17db7d414797501 --- /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 f855070b0b94f07d992c43bd2ba66cf5eacd529e..b470996812967601f91c7e85f80540d3e3ac1e03 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