Michael Lando | b35130e | 2017-09-27 19:31:12 +0300 | [diff] [blame] | 1 | FROM openecomp/base_sdc-frontend:1.0.0-SNAPSHOT-latest |
Tal Gitelman | fa22290 | 2017-08-16 13:44:31 +0300 | [diff] [blame] | 2 | |
| 3 | COPY chef-solo /root/chef-solo/ |
Tal Gitelman | fa22290 | 2017-08-16 13:44:31 +0300 | [diff] [blame] | 4 | |
Michael Lando | b35130e | 2017-09-27 19:31:12 +0300 | [diff] [blame] | 5 | COPY chef-repo/cookbooks /root/chef-solo/cookbooks/ |
Tal Gitelman | fa22290 | 2017-08-16 13:44:31 +0300 | [diff] [blame] | 6 | |
| 7 | RUN cp ${JETTY_HOME}/resources/log4j.properties ${JETTY_BASE}/resources/log4j.properties |
| 8 | |
| 9 | ADD WSSimulator*.war ${JETTY_BASE}/webapps/ |
Michael Lando | b35130e | 2017-09-27 19:31:12 +0300 | [diff] [blame] | 10 | |
Tal Gitelman | fa22290 | 2017-08-16 13:44:31 +0300 | [diff] [blame] | 11 | RUN chown -R jetty:jetty ${JETTY_BASE}/webapps |
| 12 | |
| 13 | COPY startup.sh /root/ |
| 14 | |
| 15 | RUN chmod 770 /root/startup.sh |
| 16 | |
| 17 | ENTRYPOINT [ "/root/startup.sh" ] |