blob: be5446e2e91878dce1ce31188cf7a81ec3ba9503 [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001FROM kibana:4.3.3
2
3RUN apt-get -y update
4RUN apt-get -y install curl
5RUN apt-get -y install vim
6
7COPY chef-solo /root/chef-solo/
8COPY chef-repo/cookbooks/. /root/chef-solo/cookbooks/
9
Michael Lando451a3402017-02-19 10:28:42 +020010# install chef-solo
Grinberg Motic3bda482017-02-23 11:24:34 +020011RUN curl -L https://omnitruck.chef.io/install.sh | bash
12
Michael Lando451a3402017-02-19 10:28:42 +020013COPY startup.sh /root/
14
15RUN chmod 770 /root/startup.sh
16
17ENTRYPOINT [ "/root/startup.sh" ]