Skip to content

Commit eb8af5f

Browse files
author
vivek ravichandran
committed
inital commit
0 parents  commit eb8af5f

16 files changed

Lines changed: 14231 additions & 0 deletions

Dockerfile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
FROM node:carbon
2+
# set working directory
3+
##RUN mkdir /
4+
#WORKDIR /
5+
COPY . .
6+
# add `/usr/src/app/node_modules/.bin` to $PATH
7+
#ENV PATH /usr/src/app/node_modules/.bin:$PATH
8+
9+
# install and cache app dependencies
10+
COPY package.json package.json
11+
RUN npm set registry http://192.168.164.132:4873/
12+
RUN npm install --silent
13+
RUN npm install react-scripts@1.1.1 -g --silent
14+
15+
# start app
16+
CMD ["npm", "start"]

README.md

Lines changed: 2486 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)