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