nextchat / Dockerfile
dongsiqie's picture
Update Dockerfile
5bc0680 verified
raw
history blame
159 Bytes
FROM node:18
RUN git clone https://github.com/Yidadaa/ChatGPT-Next-Web.git
WORKDIR "ChatGPT-Next-Web"
RUN yarn install && yarn build
EXPOSE 3000
CMD yarn start