dongsiqie commited on
Commit
c89acaf
·
verified ·
1 Parent(s): 22b279b

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
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