convai / Dockerfile
julien-c's picture
julien-c HF Staff
seriously?
5ed45e2 verified
raw
history blame
235 Bytes
FROM node:20
WORKDIR /code
RUN npm i -g [email protected]
COPY . .
RUN cd front && npm i && time tsc && cd ..
RUN cd grunt && npm i && grunt && cd ..
RUN cd server && npm i && grunt && cd ..
CMD ["node", "server/dist/server.js"]