dongsiqie commited on
Commit
5bc0680
·
verified ·
1 Parent(s): f44f78a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -1 +1,6 @@
1
- FROM yidadaa/chatgpt-next-web
 
 
 
 
 
 
1
+ FROM node:18
2
+ RUN git clone https://github.com/Yidadaa/ChatGPT-Next-Web.git
3
+ WORKDIR "ChatGPT-Next-Web"
4
+ RUN yarn install && yarn build
5
+ EXPOSE 3000
6
+ CMD yarn start