Allensms commited on
Commit
1538391
1 Parent(s): 17bf8e9

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
+
5
+ RUN yarn install && yarn build
6
+
7
+ EXPOSE 3000
8
+ CMD yarn start