Reaperxxxx commited on
Commit
183f7cf
·
verified ·
1 Parent(s): 925a7e5

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 express express-rate-limit helmet cors mongoose dotenv
5
+ RUN chmod -R 777 /app
6
+ EXPOSE 7860
7
+ CMD ["node", "index.js"]