diff options
author | xudan16 <xudan16@huawei.com> | 2022-07-08 14:45:52 +0800 |
---|---|---|
committer | Dan Xu <xudan16@huawei.com> | 2022-07-12 02:24:05 +0000 |
commit | fe06a99cd9bce8ea94493d9735d629377946b3f2 (patch) | |
tree | f9395b9a5ff6b991ce5ce11af60f1082897e71be /standalone/src | |
parent | 2369b55a48d6ca3ce251b86e0c4150806e60f183 (diff) |
Add standalone module into intent analysis
This standalone module is used for docker build.
This is align with UUI other projects.
Signed-off-by: xudan16 <xudan16@huawei.com>
Issue-ID: USECASEUI-693
Change-Id: I5fa71ff770f1d27851cc37460c37ca5477393bf2
Diffstat (limited to 'standalone/src')
-rw-r--r-- | standalone/src/main/assembly/Dockerfile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/standalone/src/main/assembly/Dockerfile b/standalone/src/main/assembly/Dockerfile new file mode 100644 index 0000000..cdbe957 --- /dev/null +++ b/standalone/src/main/assembly/Dockerfile @@ -0,0 +1,14 @@ +FROM nexus3.onap.org:10001/onap/integration-java11:9.0.0 + +USER root + +RUN mkdir /home/uui + +ADD usecase-ui-intent-analysis-*-linux64.tar.gz /home/uui/ + +WORKDIR /home/uui + +EXPOSE 8083 + +ENTRYPOINT ["sh", "-c"] +CMD ["exec java -jar usecase-ui-intent-analysis.jar"] |