Reaperxxxx commited on
Commit
f808acf
·
verified ·
1 Parent(s): 69010d2

Create Dockerfile

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