shiveshnavin commited on
Commit
4ae085c
·
1 Parent(s): ff246e4
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -3,9 +3,9 @@ FROM timbru31/node-alpine-git:latest
3
  WORKDIR /app
4
  COPY . .
5
 
6
- RUN cd /app && git submodule init
7
- RUN cd /app && git submodule update
8
- RUN cd /app/common-utils && npm install
9
- RUN cd /app && npm install
10
  CMD ["echo","Starting App..."]
11
  CMD ["sh", "start.sh"]
 
3
  WORKDIR /app
4
  COPY . .
5
 
6
+ # RUN cd /app && git submodule init
7
+ # RUN cd /app && git submodule update
8
+ RUN cd common-utils && npm install
9
+ RUN npm install
10
  CMD ["echo","Starting App..."]
11
  CMD ["sh", "start.sh"]