STAM 327eb7feac
april update pack - part 2
TC Agents fix
GLR agents fix
2025-04-15 00:45:18 +03:00

12 lines
421 B
Docker

FROM bitnami/cassandra:3.11
USER root
ARG CAS_LUCENE_PLUGIN_VER=3.11.3.0
ARG CAS_LUCENE_PLUGIN_URL=https://repo1.maven.org/maven2/com/stratio/cassandra/cassandra-lucene-index-plugin/${CAS_LUCENE_PLUGIN_VER}/cassandra-lucene-index-plugin-${CAS_LUCENE_PLUGIN_VER}.jar
RUN cd /opt/bitnami/cassandra/lib && \
curl ${CAS_LUCENE_PLUGIN_URL} --output cassandra-lucene-index-plugin-${CAS_LUCENE_PLUGIN_VER}.jar
USER 1001