blob: 33d3760cdf7006f61841e26e2a65c3a02ed2f752 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
FROM onap/base_sdc-python:1.3.0-SNAPSHOT-latest
COPY chef-solo /root/chef-solo/
COPY chef-repo/cookbooks /root/chef-solo/cookbooks/
COPY startup.sh /root/
RUN chmod 770 /root/startup.sh
ENTRYPOINT [ "/root/startup.sh" ]
|