blob: 9e55749e7ed3d7fdeaec7aa57971231c4f634e40 [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
12RUN curl -L https://www.opscode.com/chef/install.sh | bash
13
14RUN cp ${JETTY_HOME}/resources/log4j.properties ${JETTY_BASE}/resources/log4j.properties
15
16ADD onboarding*.war ${JETTY_BASE}/webapps/
17ADD catalog-fe-__SDC-RELEASE__.war ${JETTY_BASE}/webapps/
18RUN chown -R jetty:jetty ${JETTY_BASE}/webapps
19
20COPY startup.sh /root/
21
22RUN chmod 770 /root/startup.sh
23
24ENTRYPOINT [ "/root/startup.sh" ]