add chef-install.sh until LF will fix curl
[sdc.git] / sdc-os-chef / sdc-frontend / Dockerfile
1 FROM jetty:9.3.15-jre8
2
3 RUN apt-get -y update
4 RUN apt-get -y install apt-utils
5 RUN apt-get -y install curl
6 RUN apt-get -y install vim
7
8 COPY chef-solo /root/chef-solo/
9 COPY chef-repo/cookbooks /root/chef-solo/cookbooks/
10
11 # install chef-solo
12 #RUN curl -L http://www.opscode.com/chef/install.sh | bash
13 bash chef-install.sh
14
15 RUN cp ${JETTY_HOME}/resources/log4j.properties ${JETTY_BASE}/resources/log4j.properties
16
17 ADD onboarding*.war                    ${JETTY_BASE}/webapps/
18 ADD catalog-fe-__SDC-RELEASE__.war     ${JETTY_BASE}/webapps/
19 RUN chown -R jetty:jetty               ${JETTY_BASE}/webapps
20
21 COPY startup.sh /root/
22
23 RUN chmod 770 /root/startup.sh
24
25 ENTRYPOINT [ "/root/startup.sh" ]