blob: 54aeb2c685b3171f1696c2d6162eb255236c3e95 [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 Motic3bda482017-02-23 11:24:34 +020012RUN curl -L https://omnitruck.chef.io/install.sh | bash
13
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" ]