summaryrefslogtreecommitdiffstats
path: root/docs/CBA
diff options
context:
space:
mode:
authorEzhilarasi <ezhrajam@in.ibm.com>2019-03-14 12:58:46 +0530
committerEzhilarasi <ezhrajam@in.ibm.com>2019-03-14 12:58:56 +0530
commit13cdec018bd34aced1a6181d15935341e0ec8590 (patch)
treece64bc062745f74e1a6e0f442380ea71c6e7372f /docs/CBA
parent57e97e6e0abe1f42c8596f9b9dbbe202ca4e0919 (diff)
Formatted Installation steps
Change-Id: I8fe0b3924a4682433e9ab5a4486fa8ad9d0c3553 Issue-ID: CCSDK-917 Signed-off-by: Ezhilarasi <ezhrajam@in.ibm.com>
Diffstat (limited to 'docs/CBA')
-rw-r--r--docs/CBA/sections/installation/index.rst36
1 files changed, 17 insertions, 19 deletions
diff --git a/docs/CBA/sections/installation/index.rst b/docs/CBA/sections/installation/index.rst
index cbd26ecdd..60a6db2af 100644
--- a/docs/CBA/sections/installation/index.rst
+++ b/docs/CBA/sections/installation/index.rst
@@ -4,45 +4,43 @@
Installation
============
-.. toctree::
- :maxdepth: 1
Building client html and js files
=================================
-FROM alpine:3.8 as builder
+ * FROM alpine:3.8 as builder
-RUN apk add --no-cache npm
+ * RUN apk add --no-cache npm
-WORKDIR /opt/cds-ui/client/
+ * WORKDIR /opt/cds-ui/client/
-COPY client/package.json /opt/cds-ui/client/
+ * COPY client/package.json /opt/cds-ui/client/
-RUN npm install
+ * RUN npm install
-COPY client /opt/cds-ui/client/
+ * COPY client /opt/cds-ui/client/
-RUN npm run build
+ * RUN npm run build
Building and creating server
============================
-FROM alpine:3.8
+ * FROM alpine:3.8
-WORKDIR /opt/cds-ui/
+ * WORKDIR /opt/cds-ui/
-RUN apk add --no-cache npm
+ * RUN apk add --no-cache npm
-COPY server/package.json /opt/cds-ui/
+ * COPY server/package.json /opt/cds-ui/
-RUN npm install
+ * RUN npm install
-COPY server /opt/cds-ui/
-COPY --from=builder /opt/cds-ui/server/public /opt/cds-ui/public
+ * COPY server /opt/cds-ui/
+ * COPY --from=builder /opt/cds-ui/server/public /opt/cds-ui/public
-RUN npm run build
+ * RUN npm run build
-EXPOSE 3000
+ * EXPOSE 3000
-CMD [ "npm", "start" ] \ No newline at end of file
+ * CMD [ "npm", "start" ] \ No newline at end of file