From 152f94cf0fff088dd9ee375586aa336f95e38a8e Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Tue, 15 Oct 2024 02:20:59 +0000 Subject: [PATCH 1/5] 24.03-lts update cassandra to 5.0.2-tentative --- .../5.0.2-tentative/24.03-lts/Dockerfile | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 cassandra/5.0.2-tentative/24.03-lts/Dockerfile diff --git a/cassandra/5.0.2-tentative/24.03-lts/Dockerfile b/cassandra/5.0.2-tentative/24.03-lts/Dockerfile new file mode 100644 index 0000000..bb981aa --- /dev/null +++ b/cassandra/5.0.2-tentative/24.03-lts/Dockerfile @@ -0,0 +1,22 @@ +ARG BASE=openeuler/openeuler:24.03-lts +FROM ${BASE} + +ARG TARGETARCH +ARG VERSION=5.0.2-tentative + +RUN yum -y install java && \ + yum clean all + +RUN groupadd --system --gid 1000 cassandra && \ + useradd --system --gid cassandra --uid 1000 cassandra + +RUN curl -o /tmp/cassandra-${VERSION}.tar.gz https://dlcdn.apache.org/cassandra/${VERSION}/apache-cassandra-${VERSION}-bin.tar.gz && \ + tar -zxvf /tmp/cassandra-${VERSION}.tar.gz -C /tmp && \ + cd /tmp/apache-cassandra-${VERSION}/bin && \ + rm -rf /tmp/cassandra-${VERSION}.tar.gz + +EXPOSE 7000 7001 7199 9042 9160 + +WORKDIR /tmp/apache-cassandra-${VERSION}/bin + +CMD ["./cassandra", "-f", "-R"] -- Gitee From db1228623297e349492c6ebb6593a67b2a8dad49 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Tue, 15 Oct 2024 02:21:21 +0000 Subject: [PATCH 2/5] 22.03-lts-sp3 update cassandra to 5.0.2-tentative --- .../5.0.2-tentative/22.03-lts-sp3/Dockerfile | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 cassandra/5.0.2-tentative/22.03-lts-sp3/Dockerfile diff --git a/cassandra/5.0.2-tentative/22.03-lts-sp3/Dockerfile b/cassandra/5.0.2-tentative/22.03-lts-sp3/Dockerfile new file mode 100644 index 0000000..d612b6f --- /dev/null +++ b/cassandra/5.0.2-tentative/22.03-lts-sp3/Dockerfile @@ -0,0 +1,22 @@ +ARG BASE=openeuler/openeuler:22.03-lts-sp3 +FROM ${BASE} + +ARG TARGETARCH +ARG VERSION=5.0.2-tentative + +RUN yum -y install java && \ + yum clean all + +RUN groupadd --system --gid 1000 cassandra && \ + useradd --system --gid cassandra --uid 1000 cassandra + +RUN curl -o /tmp/cassandra-${VERSION}.tar.gz https://dlcdn.apache.org/cassandra/${VERSION}/apache-cassandra-${VERSION}-bin.tar.gz && \ + tar -zxvf /tmp/cassandra-${VERSION}.tar.gz -C /tmp && \ + cd /tmp/apache-cassandra-${VERSION}/bin && \ + rm -rf /tmp/cassandra-${VERSION}.tar.gz + +EXPOSE 7000 7001 7199 9042 9160 + +WORKDIR /tmp/apache-cassandra-${VERSION}/bin + +CMD ["./cassandra", "-f", "-R"] -- Gitee From 0ca297572d55978863de054237f57c567b9c3d22 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Tue, 15 Oct 2024 02:21:44 +0000 Subject: [PATCH 3/5] 22.03-lts-sp4 update cassandra to 5.0.2-tentative --- .../5.0.2-tentative/22.03-lts-sp4/Dockerfile | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 cassandra/5.0.2-tentative/22.03-lts-sp4/Dockerfile diff --git a/cassandra/5.0.2-tentative/22.03-lts-sp4/Dockerfile b/cassandra/5.0.2-tentative/22.03-lts-sp4/Dockerfile new file mode 100644 index 0000000..cfa688c --- /dev/null +++ b/cassandra/5.0.2-tentative/22.03-lts-sp4/Dockerfile @@ -0,0 +1,22 @@ +ARG BASE=openeuler/openeuler:22.03-lts-sp4 +FROM ${BASE} + +ARG TARGETARCH +ARG VERSION=5.0.2-tentative + +RUN yum -y install java && \ + yum clean all + +RUN groupadd --system --gid 1000 cassandra && \ + useradd --system --gid cassandra --uid 1000 cassandra + +RUN curl -o /tmp/cassandra-${VERSION}.tar.gz https://dlcdn.apache.org/cassandra/${VERSION}/apache-cassandra-${VERSION}-bin.tar.gz && \ + tar -zxvf /tmp/cassandra-${VERSION}.tar.gz -C /tmp && \ + cd /tmp/apache-cassandra-${VERSION}/bin && \ + rm -rf /tmp/cassandra-${VERSION}.tar.gz + +EXPOSE 7000 7001 7199 9042 9160 + +WORKDIR /tmp/apache-cassandra-${VERSION}/bin + +CMD ["./cassandra", "-f", "-R"] -- Gitee From dd8df5eb89833d7dc639ab2ba8230ec4544d72fa Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Tue, 15 Oct 2024 02:22:07 +0000 Subject: [PATCH 4/5] 22.03-lts-sp1 update cassandra to 5.0.2-tentative --- .../5.0.2-tentative/22.03-lts-sp1/Dockerfile | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 cassandra/5.0.2-tentative/22.03-lts-sp1/Dockerfile diff --git a/cassandra/5.0.2-tentative/22.03-lts-sp1/Dockerfile b/cassandra/5.0.2-tentative/22.03-lts-sp1/Dockerfile new file mode 100644 index 0000000..55e901a --- /dev/null +++ b/cassandra/5.0.2-tentative/22.03-lts-sp1/Dockerfile @@ -0,0 +1,22 @@ +ARG BASE=openeuler/openeuler:22.03-lts-sp1 +FROM ${BASE} + +ARG TARGETARCH +ARG VERSION=5.0.2-tentative + +RUN yum -y install java && \ + yum clean all + +RUN groupadd --system --gid 1000 cassandra && \ + useradd --system --gid cassandra --uid 1000 cassandra + +RUN curl -o /tmp/cassandra-${VERSION}.tar.gz https://dlcdn.apache.org/cassandra/${VERSION}/apache-cassandra-${VERSION}-bin.tar.gz && \ + tar -zxvf /tmp/cassandra-${VERSION}.tar.gz -C /tmp && \ + cd /tmp/apache-cassandra-${VERSION}/bin && \ + rm -rf /tmp/cassandra-${VERSION}.tar.gz + +EXPOSE 7000 7001 7199 9042 9160 + +WORKDIR /tmp/apache-cassandra-${VERSION}/bin + +CMD ["./cassandra", "-f", "-R"] -- Gitee From ac13c282f21b03e6c583396975a48e4e265f7f1f Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Tue, 15 Oct 2024 02:22:30 +0000 Subject: [PATCH 5/5] 20.03-lts-sp4 update cassandra to 5.0.2-tentative --- .../5.0.2-tentative/20.03-lts-sp4/Dockerfile | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 cassandra/5.0.2-tentative/20.03-lts-sp4/Dockerfile diff --git a/cassandra/5.0.2-tentative/20.03-lts-sp4/Dockerfile b/cassandra/5.0.2-tentative/20.03-lts-sp4/Dockerfile new file mode 100644 index 0000000..96c2aca --- /dev/null +++ b/cassandra/5.0.2-tentative/20.03-lts-sp4/Dockerfile @@ -0,0 +1,22 @@ +ARG BASE=openeuler/openeuler:20.03-lts-sp4 +FROM ${BASE} + +ARG TARGETARCH +ARG VERSION=5.0.2-tentative + +RUN yum -y install java && \ + yum clean all + +RUN groupadd --system --gid 1000 cassandra && \ + useradd --system --gid cassandra --uid 1000 cassandra + +RUN curl -o /tmp/cassandra-${VERSION}.tar.gz https://dlcdn.apache.org/cassandra/${VERSION}/apache-cassandra-${VERSION}-bin.tar.gz && \ + tar -zxvf /tmp/cassandra-${VERSION}.tar.gz -C /tmp && \ + cd /tmp/apache-cassandra-${VERSION}/bin && \ + rm -rf /tmp/cassandra-${VERSION}.tar.gz + +EXPOSE 7000 7001 7199 9042 9160 + +WORKDIR /tmp/apache-cassandra-${VERSION}/bin + +CMD ["./cassandra", "-f", "-R"] -- Gitee