blob: 2e32c5c294d624ad653296335382548465b38b05 [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
13bash chef-install.sh
14
Michael Lando451a3402017-02-19 10:28:42 +020015
16COPY startup.sh /root/
17
18RUN chmod 770 /root/startup.sh
19
20ENTRYPOINT [ "/root/startup.sh" ]