blob: 7c8daf8b96e40fd7ccd7a9ca30f1a1d80de8b292 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
FROM cassandra:3.11.4
RUN # \
apt-get -y --no-install-recommends install \
apt-transport-https \
curl \
wget && \
wget -q -O - https://www.apache.org/dist/cassandra/KEYS | sudo apt-key add - && \
apt-get -o Acquire::Check-Valid-Until=false update && \
apt-get -y --no-install-recommends install \
perl \
python \
ntp && \
apt-get -y autoremove && \
update-alternatives --set java /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java && \
curl -L https://omnitruck.chef.io/install.sh | bash -s -- -v 13.8.5
|