blob: 7ff6e9a555d979e92c83fc166e21ceb791b6ccbe [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
ml636r21ee9162017-02-21 16:23:07 +020012RUN curl -L http://www.opscode.com/chef/install.sh | bash
Michael Lando451a3402017-02-19 10:28:42 +020013
14COPY startup.sh /root/
15
16RUN chmod 770 /root/startup.sh
17
18ENTRYPOINT [ "/root/startup.sh" ]