Michael Lando | fd3821d | 2017-06-01 13:07:44 +0300 | [diff] [blame] | 1 | FROM cassandra:2.1.17 |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 2 | |
Victor Morales | 648b32e | 2017-06-14 14:45:20 -0500 | [diff] [blame] | 3 | ARG HTTP_PROXY |
| 4 | ARG HTTPS_PROXY |
| 5 | |
| 6 | ENV HTTP_PROXY ${HTTP_PROXY} |
| 7 | ENV HTTPS_PROXY ${HTTPS_PROXY} |
| 8 | |
| 9 | RUN if [ ! -z ${HTTP_PROXY} ]; then echo "Acquire::http::proxy \"${HTTP_PROXY}\";" >> /etc/apt/apt.conf; fi && \ |
| 10 | if [ ! -z ${HTTPS_PROXY} ]; then echo "Acquire::https::proxy \"${HTTPS_PROXY}\";" >> /etc/apt/apt.conf; fi |
| 11 | |
Michael Lando | 706e716 | 2017-05-19 00:28:52 +0300 | [diff] [blame] | 12 | #ENV DEBIAN_FRONTEND noninteractive |
Michael Lando | fd3821d | 2017-06-01 13:07:44 +0300 | [diff] [blame] | 13 | RUN apt-get -y update && apt-get -y install --no-install-recommends \ |
| 14 | curl \ |
| 15 | vim \ |
| 16 | apt-utils \ |
| 17 | openjdk-8-jdk |
| 18 | |
| 19 | RUN update-alternatives --set java /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 20 | |
| 21 | COPY chef-solo /root/chef-solo/ |
| 22 | COPY chef-repo/cookbooks /root/chef-solo/cookbooks/ |
| 23 | |
| 24 | # install chef-solo |
Grinberg Moti | c3bda48 | 2017-02-23 11:24:34 +0200 | [diff] [blame] | 25 | RUN curl -L https://omnitruck.chef.io/install.sh | bash |
| 26 | |
Grinberg Moti | f79a5d1 | 2017-02-22 15:36:03 +0200 | [diff] [blame] | 27 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 28 | COPY startup.sh /root/ |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 29 | RUN chmod 770 /root/startup.sh |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 30 | ENTRYPOINT [ "/root/startup.sh" ] |