blob: 940dd2341e8161cdc233edfc15fb22ddfd92e5b0 [file] [log] [blame]
Michael Lando9dd269d2017-02-20 01:04:22 +02001FROM jetty:9.3.15-jre8
2
3RUN apt-get -y update
4RUN apt-get -y install apt-utils
5RUN apt-get -y install curl
6RUN apt-get -y install vim
7
8COPY chef-solo /root/chef-solo/
9COPY chef-repo/cookbooks /root/chef-solo/cookbooks/
10
11# install chef-solo
Grinberg Moti7aea13f2017-02-22 12:01:00 +020012#RUN curl -L http://www.opscode.com/chef/install.sh | bash
Grinberg Motif79a5d12017-02-22 15:36:03 +020013COPY chef-install.sh /root/
14RUN chmod 770 /root/chef-install.sh
15RUN bash /root/chef-install.sh
Michael Lando9dd269d2017-02-20 01:04:22 +020016
17RUN cp ${JETTY_HOME}/resources/log4j.properties ${JETTY_BASE}/resources/log4j.properties
18
19ADD onboarding*.war ${JETTY_BASE}/webapps/
20ADD catalog-fe-__SDC-RELEASE__.war ${JETTY_BASE}/webapps/
21RUN chown -R jetty:jetty ${JETTY_BASE}/webapps
22
23COPY startup.sh /root/
24
25RUN chmod 770 /root/startup.sh
26
27ENTRYPOINT [ "/root/startup.sh" ]