Spaces:
Running
Running
Second try
Browse files- Dockerfile +5 -1
Dockerfile
CHANGED
@@ -6,6 +6,10 @@ RUN npm i -g [email protected]
|
|
6 |
|
7 |
COPY . .
|
8 |
|
9 |
-
RUN
|
|
|
|
|
|
|
|
|
10 |
|
11 |
CMD ["node", "server/dist/server.js"]
|
|
|
6 |
|
7 |
COPY . .
|
8 |
|
9 |
+
RUN pushd front && npm i && time tsc && popd
|
10 |
+
|
11 |
+
RUN pushd grunt && npm i && grunt && popd
|
12 |
+
|
13 |
+
RUN pushd server && npm i && grunt && popd
|
14 |
|
15 |
CMD ["node", "server/dist/server.js"]
|