ahdeveloperai777 commited on
Commit
e24215a
·
verified ·
1 Parent(s): 8489a49

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ FROM node:18
2
+ WORKDIR /app
3
+ COPY . .
4
+ RUN npm install
5
+ EXPOSE 7860
6
+ CMD ["node", "index.js"]