blob: fc0c9cffa294fc335c6206dcc5d63754336b1a06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
FROM onap/base_sdc-jetty:1.4.1
COPY chef-solo /root/chef-solo/
COPY chef-repo/cookbooks/. /root/chef-solo/cookbooks/
ADD --chown=jetty:jetty catalog-be-*.war ${JETTY_BASE}/webapps/
USER root
COPY startup.sh /root/
RUN chmod 770 /root/startup.sh
ENTRYPOINT [ "/root/startup.sh" ]
|