Commit 90e84b77ebd086977741187fdc9ee096f4a45e4a

Authored by Andrii Shvaika
1 parent ec4362a8

Fix for Cassandra Dockerfile

... ... @@ -19,7 +19,7 @@ FROM thingsboard/openjdk8
19 19 RUN apt-get update
20 20 RUN apt-get install -y curl nmap procps
21 21 RUN echo 'deb http://www.apache.org/dist/cassandra/debian 311x main' | tee --append /etc/apt/sources.list.d/cassandra.list > /dev/null
22   -RUN curl https://www.apache.org/dist/cassandra/KEYS | apt-key add -
  22 +RUN wget -qO - https://www.apache.org/dist/cassandra/KEYS | apt-key add -
23 23 RUN apt-get update
24 24 RUN apt-get install -y cassandra cassandra-tools
25 25 RUN update-rc.d cassandra disable
... ...