diff options
author | Yuli Shlosberg <ys9693@att.com> | 2018-03-21 11:14:08 +0200 |
---|---|---|
committer | Tal Gitelman <tg851x@intl.att.com> | 2018-03-21 12:21:21 +0000 |
commit | f59a22539d5b372e2425c39963547985379d6990 (patch) | |
tree | fafd5663ab0e1a2b29049712b07717fcf6f8f509 /ui-ci/sdc-ui-tests/Dockerfile | |
parent | be00af7a2e0dc8dc2d5f8fbf03d778a8f632c4fb (diff) |
new ui sanity docker
Change-Id: I257c198c563771b5badcf36a479cb499f841682f
Issue-ID: SDC-995
Signed-off-by: Yuli Shlosberg <ys9693@att.com>
Diffstat (limited to 'ui-ci/sdc-ui-tests/Dockerfile')
-rw-r--r-- | ui-ci/sdc-ui-tests/Dockerfile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ui-ci/sdc-ui-tests/Dockerfile b/ui-ci/sdc-ui-tests/Dockerfile new file mode 100644 index 0000000000..be1d3bf8dd --- /dev/null +++ b/ui-ci/sdc-ui-tests/Dockerfile @@ -0,0 +1,18 @@ +FROM onap/base_sdc-vnc:1.3.0-SNAPSHOT-latest + +COPY chef-solo /root/chef-solo/ + +COPY chef-repo/cookbooks/. /root/chef-solo/cookbooks/ + + +ENV TESTS_BASE /var/lib/tests +RUN mkdir -p "$TESTS_BASE" +WORKDIR $TESTS_BASE + +ADD ui-ci-*.jar ${TESTS_BASE}/ + +COPY startup.sh /root/ + +RUN chmod 770 /root/startup.sh + +ENTRYPOINT [ "/root/startup.sh" ] |