blob: 776aa700cc7bd7c3d807f7c5d9a09eb444d41a37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
FROM cassandra:3.11.4
RUN 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
|