59e659660b1ff95fa172e95c887fd1c458ccc91e
[sdc.git] / sdc-os-chef / sdc-kibana / Dockerfile
1 FROM kibana:4.3.3
2
3 RUN apt-get -y update
4 RUN apt-get -y install curl
5 RUN apt-get -y install vim
6
7 COPY chef-solo /root/chef-solo/
8 COPY chef-repo/cookbooks/. /root/chef-solo/cookbooks/
9
10
11 # install chef-solo
12 RUN curl -L https://www.opscode.com/chef/install.sh | bash
13
14 COPY startup.sh /root/
15
16 RUN chmod 770 /root/startup.sh
17
18 ENTRYPOINT [ "/root/startup.sh" ]