convai / Dockerfile
julien-c's picture
julien-c HF Staff
maybe?
fe716ae verified
raw
history blame
264 Bytes
FROM node:20
WORKDIR /code
RUN apt-get -y install time
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"]