blob: 3e9295db5ec70ce8697ffae303e672853845c7c3 [file] [log] [blame]
Michael Landofd3821d2017-06-01 13:07:44 +03001FROM cassandra:2.1.17
Michael Lando451a3402017-02-19 10:28:42 +02002
Michael Lando706e7162017-05-19 00:28:52 +03003#ENV DEBIAN_FRONTEND noninteractive
Michael Landofd3821d2017-06-01 13:07:44 +03004RUN apt-get -y update && apt-get -y install --no-install-recommends \
5 curl \
6 vim \
7 apt-utils \
8 openjdk-8-jdk
9
10RUN update-alternatives --set java /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
Michael Lando451a3402017-02-19 10:28:42 +020011
12COPY chef-solo /root/chef-solo/
13COPY chef-repo/cookbooks /root/chef-solo/cookbooks/
14
15# install chef-solo
Grinberg Motic3bda482017-02-23 11:24:34 +020016RUN curl -L https://omnitruck.chef.io/install.sh | bash
17
Grinberg Motif79a5d12017-02-22 15:36:03 +020018
Michael Lando451a3402017-02-19 10:28:42 +020019COPY startup.sh /root/
Michael Lando451a3402017-02-19 10:28:42 +020020RUN chmod 770 /root/startup.sh
Michael Landoed64b5e2017-06-09 03:19:04 +030021ENTRYPOINT [ "/root/startup.sh" ]