blob: 63fba6caaffd859d3d2df213ed5670a26f833079 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
FROM onap/base_sdc-sanity:1.2.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" ]
|