diff options
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" ] |