yetey commited on
Commit
cfe4f4e
1 Parent(s): 542ea00

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM node:18
2
+ RUN git clone https://github.com/SuiYunsy/NextWeb-LangChain
3
+ WORKDIR /NextWeb-LangChain
4
+ RUN yarn install
5
+ RUN yarn build
6
+ ENV PORT 7860
7
+ CMD ["yarn", "start"]