Skip to content
Open
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
10 changes: 10 additions & 0 deletions cassandra/Dockerfile-5.0.ubi8
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,16 @@ RUN if test ! -e apache-cassandra-${CASSANDRA_VERSION}-bin.tar.gz; then curl -L
chown -R cassandra:root ${CASSANDRA_HOME} && \
chmod -R a+rwX ${CASSANDRA_HOME}

###
# Add sstable tools to Cassandra
###
ARG SSTABLE_TOOLS_VERSION=cassandra-5.0.2-1.0-preview-4
RUN curl -LO "https://github.com/burmanm/cassandra-sstable-tools/releases/download/${SSTABLE_TOOLS_VERSION}/ic-sstable-tools.jar" && \
mv ic-sstable-tools.jar $CASSANDRA_HOME/lib && \
curl -LO "https://github.com/burmanm/cassandra-sstable-tools/releases/download/${SSTABLE_TOOLS_VERSION}/ic-sstable-tools" && \
mv ic-sstable-tools $CASSANDRA_HOME/bin && \
chmod +x $CASSANDRA_HOME/bin/ic-sstable-tools

#############################################################
# Build the Management API
FROM --platform=$BUILDPLATFORM maven:3.8.6-openjdk-11-slim AS mgmtapi-setup
Expand Down
Loading