Spaces:
Running
Running
File size: 244 Bytes
111cea2 e843457 111cea2 95f56db ac200ee 5ed45e2 ac200ee f1994e6 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 typescript@4.0.3 grunt-cli@1.2.0
COPY . .
RUN cd front && npm i && tsc && cd ..
RUN cd grunt && npm i && grunt && cd ..
RUN cd server && npm i && tsc && cd ..
CMD ["node", "server/dist/server.js"]
|