File size: 241 Bytes
111cea2
 
 
 
 
 
 
 
ac200ee
 
 
 
 
111cea2
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM node:20

WORKDIR /code

RUN npm i -g [email protected]

COPY . .

RUN pushd front && npm i && time tsc && popd

RUN pushd grunt && npm i && grunt && popd

RUN pushd server && npm i && grunt && popd

CMD ["node", "server/dist/server.js"]