aboutsummaryrefslogtreecommitdiffstats
path: root/docs/CBA/sections/installation/index.rst
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2019-03-21 13:21:51 +0000
committerGerrit Code Review <gerrit@onap.org>2019-03-21 13:21:51 +0000
commitc0c91752cf7bb5bddb940de2f0eb8627ad645279 (patch)
tree7818be40a81461f5c8f43109feb8e2ffa87c50f7 /docs/CBA/sections/installation/index.rst
parent9c710f46ae1305865a30285bff70a2e5778fbf7f (diff)
parentfec812aac727aee2e97f62d7cde9bb8665139305 (diff)
Merge "Removed unwanted files and folders"
Diffstat (limited to 'docs/CBA/sections/installation/index.rst')
-rw-r--r--docs/CBA/sections/installation/index.rst47
1 files changed, 0 insertions, 47 deletions
diff --git a/docs/CBA/sections/installation/index.rst b/docs/CBA/sections/installation/index.rst
deleted file mode 100644
index eb7676d08..000000000
--- a/docs/CBA/sections/installation/index.rst
+++ /dev/null
@@ -1,47 +0,0 @@
-.. This work is licensed under a Creative Commons Attribution 4.0 International License.
-.. http://creativecommons.org/licenses/by/4.0
-.. Copyright (C) 2019 IBM.
-
-Installation
-------------
-
-Building client html and js files
-=================================
-
- * FROM alpine:3.8 as builder
-
- * RUN apk add --no-cache npm
-
- * WORKDIR /opt/cds-ui/client/
-
- * COPY client/package.json /opt/cds-ui/client/
-
- * RUN npm install
-
- * COPY client /opt/cds-ui/client/
-
- * RUN npm run build
-
-
-Building and creating server
-============================
-
- * FROM alpine:3.8
-
- * WORKDIR /opt/cds-ui/
-
- * RUN apk add --no-cache npm
-
- * COPY server/package.json /opt/cds-ui/
-
- * RUN npm install
-
- * COPY server /opt/cds-ui/
-
- * COPY --from=builder /opt/cds-ui/server/public /opt/cds-ui/public
-
- * RUN npm run build
-
- * EXPOSE 3000
-
- * CMD [ "npm", "start" ] \ No newline at end of file