blob: d418d4628e1091630e4b33fde76f412166699de3 [file] [log] [blame]
Michael Landob35130e2017-09-27 19:31:12 +03001FROM openecomp/base_sdc-frontend:1.0.0-SNAPSHOT-latest
Tal Gitelmanfa222902017-08-16 13:44:31 +03002
3COPY chef-solo /root/chef-solo/
Tal Gitelmanfa222902017-08-16 13:44:31 +03004
Michael Landob35130e2017-09-27 19:31:12 +03005COPY chef-repo/cookbooks /root/chef-solo/cookbooks/
Tal Gitelmanfa222902017-08-16 13:44:31 +03006
7RUN cp ${JETTY_HOME}/resources/log4j.properties ${JETTY_BASE}/resources/log4j.properties
8
9ADD WSSimulator*.war ${JETTY_BASE}/webapps/
Michael Landob35130e2017-09-27 19:31:12 +030010
Tal Gitelmanfa222902017-08-16 13:44:31 +030011RUN chown -R jetty:jetty ${JETTY_BASE}/webapps
12
13COPY startup.sh /root/
14
15RUN chmod 770 /root/startup.sh
16
17ENTRYPOINT [ "/root/startup.sh" ]