Reaperxxxx commited on
Commit
47ba202
·
verified ·
1 Parent(s): dab771e

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:20
2
+
3
+ WORKDIR /app
4
+
5
+ RUN npm install express mongodb dotenv
6
+
7
+ COPY . .
8
+
9
+ RUN chmod -R 777 /app
10
+
11
+ EXPOSE 7860
12
+
13
+ CMD ["node", "index.js"]