Spaces:
fsbxcm
/
Runtime error

dongsiqie commited on
Commit
be44206
1 Parent(s): c72ed04

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -6
Dockerfile CHANGED
@@ -1,8 +1,7 @@
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
 
1
  FROM node:18
2
+ RUN git clone https://github.com/Yidadaa/ChatGPT-Next-Web.git
3
+ WORKDIR "ChatGPT-Next-Web"
4
+ RUN npm i
5
+ RUN npm run build
 
6
  EXPOSE 3000
7
+ CMD ["npm", "run", "start"]