Spaces:
Running
Running
Commit ·
4ae085c
1
Parent(s): ff246e4
Update
Browse files- 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
|
| 9 |
-
RUN
|
| 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"]
|