convai / Dockerfile
julien-c's picture
julien-c HF Staff
omg omg
e843457 verified
raw
history blame
246 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"]