convai / Dockerfile
julien-c's picture
julien-c HF staff
:gun:
f1994e6 verified
raw
history blame contribute delete
244 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 && tsc && cd ..
CMD ["node", "server/dist/server.js"]