convai / Dockerfile
julien-c's picture
julien-c HF staff
Second try
ac200ee verified
raw
history blame
241 Bytes
FROM node:20
WORKDIR /code
RUN npm i -g [email protected]
COPY . .
RUN pushd front && npm i && time tsc && popd
RUN pushd grunt && npm i && grunt && popd
RUN pushd server && npm i && grunt && popd
CMD ["node", "server/dist/server.js"]