Spaces:
fsbxcm
/
Runtime error

dongsiqie commited on
Commit
c72ed04
1 Parent(s): 6f73a50

Update Dockerfile

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