next-chat-ui / Dockerfile
pikto's picture
Update Dockerfile
d2ace6e
raw
history blame
No virus
172 Bytes
FROM node:18
RUN git clone https://github.com/piktokenn/ChatGPT-Next-Web.git
WORKDIR "ChatGPT-Next-Web"
RUN npm i
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]