blob: 87fb26d88f9397359356121d069fb55ae2cd89e8 [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
10
11# install chef-solo
Grinberg Moti7aea13f2017-02-22 12:01:00 +020012#RUN curl -L http://www.opscode.com/chef/install.sh | bash
Grinberg Moti86fc38f2017-02-22 14:08:17 +020013run bash chef-install.sh
Grinberg Moti7aea13f2017-02-22 12:01:00 +020014
Michael Lando451a3402017-02-19 10:28:42 +020015
16COPY startup.sh /root/
17
18RUN chmod 770 /root/startup.sh
19
20ENTRYPOINT [ "/root/startup.sh" ]