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