NexusV1 commited on
Commit
1c2124d
·
verified ·
1 Parent(s): 1822533

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM node:20-slim
2
+ WORKDIR /app
3
+ COPY . .
4
+ RUN npm install uuid fs-extra multer express axios
5
+ RUN chmod -R 777 /app
6
+ EXPOSE 7860
7
+ CMD ["node", "index.js"]